3
0
Fork 0
forked from mirrors/nixpkgs

gcc: Get rid of lib64

This commit is contained in:
Eelco Dolstra 2012-10-16 14:34:27 -04:00
parent 877838870e
commit e4a11b4d92
2 changed files with 11 additions and 0 deletions

View file

@ -196,6 +196,15 @@ postConfigure() {
}
preInstall() {
# Make lib64 a symlink to lib.
if [ -n "$is64bit" ]; then
mkdir -p $out/lib
ln -s lib $out/lib64
fi
}
postInstall() {
# Remove precompiled headers for now. They are very big and
# probably not very useful yet.

View file

@ -406,6 +406,8 @@ stdenv.mkDerivation ({
enableParallelBuilding = true;
inherit (stdenv) is64bit;
meta = {
homepage = http://gcc.gnu.org/;
license = "GPLv3+"; # runtime support libraries are typically LGPLv3+