From 02d15fbbdbf765ea18c0ca67a15b065a1273a08f Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Wed, 2 Dec 2009 17:01:52 +0000 Subject: [PATCH] pass explicit host/build/target to gcc-apple and make symbolic link lib64 to lib/x86_64 svn path=/nixpkgs/branches/x86_64-darwin/; revision=18766 --- pkgs/development/compilers/gcc-apple64/builder.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc-apple64/builder.sh b/pkgs/development/compilers/gcc-apple64/builder.sh index cb7c0901eb5..ce0baa1597a 100644 --- a/pkgs/development/compilers/gcc-apple64/builder.sh +++ b/pkgs/development/compilers/gcc-apple64/builder.sh @@ -67,7 +67,7 @@ preConfigure() { cd ../build configureScript=../$sourceRoot/configure - configureFlags="--enable-languages=$langs --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-multilib --with-gxx-include-dir=${STDCXX_INCDIR}" + configureFlags="--enable-languages=$langs --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-multilib --with-gxx-include-dir=${STDCXX_INCDIR} --host=x86_64-apple-darwin10 --build=x86_64-apple-darwin10 --target=x86_64-apple-darwin10" } @@ -123,3 +123,5 @@ patchPhase() { } genericBuild + +ln -s $out/lib/x86_64 $out/lib64