rename gcc_static -> gccStatic
introduce gccStaticBootstrap, used only for purifying a new environment svn path=/nixpkgs/trunk/; revision=6249
This commit is contained in:
parent
6f6fc42917
commit
654f5a0529
|
@ -629,10 +629,15 @@ rec {
|
|||
|
||||
gcc = useFromStdenv (stdenv ? gcc) stdenv.gcc gcc41;
|
||||
|
||||
gcc_static = (import ../development/compilers/gcc-static-3.4) {
|
||||
gccStatic = (import ../development/compilers/gcc-static-3.4) {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
};
|
||||
|
||||
gccStaticBootstrap = (import ../development/compilers/gcc-static-3.4) {
|
||||
inherit fetchurl stdenv;
|
||||
noSysDirs = false;
|
||||
};
|
||||
|
||||
dietgcc = (import ../build-support/gcc-wrapper) {
|
||||
nativeTools = false;
|
||||
nativeGlibc = false;
|
||||
|
|
Loading…
Reference in New Issue