rename gcc_static -> gccStatic

introduce gccStaticBootstrap, used only for purifying a new environment

svn path=/nixpkgs/trunk/; revision=6249
This commit is contained in:
Armijn Hemel 2006-08-26 08:47:38 +00:00
parent 6f6fc42917
commit 654f5a0529
1 changed files with 6 additions and 1 deletions

View File

@ -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;