Darwin: Change noSysDirs' to false' by default.

svn path=/nixpkgs/trunk/; revision=33911
This commit is contained in:
Ludovic Courtès 2012-04-24 16:14:44 +00:00
parent 7716976345
commit 7e70f890c4

View file

@ -21,8 +21,12 @@
# null, the default standard environment is used.
bootStdenv ? null
, # Darwin is an "impure" platform, with its libc outside of the store.
# Thus, GCC, GFortran, & co. must always look for files in standard system
# directories (/usr/include, etc.)
noSysDirs ? (system != "x86_64-darwin" && system != "i686-darwin")
# More flags for the bootstrapping of stdenv.
, noSysDirs ? true
, gccWithCC ? true
, gccWithProfiling ? true