* Finally we have a working stdenvLinux again.

On the downside, the build process of stdenvLinux builds gcc 9 times
  (3 x 3 bootstrap stages).  That's a bit excessive.

svn path=/nixpkgs/trunk/; revision=880
This commit is contained in:
Eelco Dolstra 2004-03-30 12:46:52 +00:00
parent 68327c3a9d
commit 01a1658c6b
19 changed files with 76 additions and 75 deletions

View File

@ -39,7 +39,7 @@ mkGccWrapper () {
sed \ sed \
-e "s^@gcc@^$src^g" \ -e "s^@gcc@^$src^g" \
-e "s^@out@^$out^g" \ -e "s^@out@^$out^g" \
-e "s^@bash@^$SHELL^g" \ -e "s^@shell@^$shell^g" \
< $gccWrapper > $dst < $gccWrapper > $dst
chmod +x $dst chmod +x $dst
} }
@ -58,7 +58,7 @@ sed \
-e "s^@out@^$out^g" \ -e "s^@out@^$out^g" \
-e "s^@ldflags@^$ldflags^g" \ -e "s^@ldflags@^$ldflags^g" \
-e "s^@ld@^$ldPath/ld^g" \ -e "s^@ld@^$ldPath/ld^g" \
-e "s^@bash@^$SHELL^g" \ -e "s^@shell@^$shell^g" \
< $ldWrapper > $out/bin/ld < $ldWrapper > $out/bin/ld
chmod +x $out/bin/ld chmod +x $out/bin/ld

View File

@ -6,7 +6,7 @@
# variables so that the compiler and the linker just "work". # variables so that the compiler and the linker just "work".
{ name, stdenv, nativeTools, nativeGlibc, nativePrefix ? "" { name, stdenv, nativeTools, nativeGlibc, nativePrefix ? ""
, gcc ? null, glibc ? null, binutils ? null , gcc ? null, glibc ? null, binutils ? null, shell ? ""
}: }:
assert nativeTools -> nativePrefix != ""; assert nativeTools -> nativePrefix != "";
@ -23,4 +23,5 @@ stdenv.mkDerivation {
langC = if nativeTools then true else gcc.langC; langC = if nativeTools then true else gcc.langC;
langCC = if nativeTools then true else gcc.langCC; langCC = if nativeTools then true else gcc.langCC;
langF77 = if nativeTools then false else gcc.langF77; langF77 = if nativeTools then false else gcc.langF77;
shell = if shell == "" then stdenv.shell else shell;
} }

View File

@ -1,4 +1,4 @@
#! @bash@ -e #! @shell@ -e
if test -n "$NIX_GCC_WRAPPER_START_HOOK"; then if test -n "$NIX_GCC_WRAPPER_START_HOOK"; then
. "$NIX_GCC_WRAPPER_START_HOOK" . "$NIX_GCC_WRAPPER_START_HOOK"

View File

@ -1,4 +1,4 @@
#! @bash@ -e #! @shell@ -e
if test -n "$NIX_LD_WRAPPER_START_HOOK"; then if test -n "$NIX_LD_WRAPPER_START_HOOK"; then
. "$NIX_LD_WRAPPER_START_HOOK" . "$NIX_LD_WRAPPER_START_HOOK"
@ -9,7 +9,8 @@ fi
# Optionally filter out paths not refering to the store. # Optionally filter out paths not refering to the store.
params=("$@") params=("$@")
if test "$NIX_ENFORCE_PURITY" = "1" -a -n "$NIX_STORE"; then if test "$NIX_ENFORCE_PURITY" = "1" -a -n "$NIX_STORE" \
-a \( -z "$NIX_IGNORE_LD_THROUGH_GCC" -o -z "$NIX_LDFLAGS_SET" \); then
rest=() rest=()
n=0 n=0
while test $n -lt ${#params[*]}; do while test $n -lt ${#params[*]}; do

View File

@ -13,6 +13,7 @@ sed \
-e "s^@postHook@^$postHook^g" \ -e "s^@postHook@^$postHook^g" \
-e "s^@initialPath@^$initialPath^g" \ -e "s^@initialPath@^$initialPath^g" \
-e "s^@gcc@^$gcc^g" \ -e "s^@gcc@^$gcc^g" \
-e "s^@shell@^$shell^g" \
-e "s^@param1@^$p1^g" \ -e "s^@param1@^$p1^g" \
-e "s^@param2@^$p2^g" \ -e "s^@param2@^$p2^g" \
-e "s^@param3@^$p3^g" \ -e "s^@param3@^$p3^g" \

View File

@ -1,4 +1,4 @@
{ stdenv, name, preHook ? null, postHook ? null, initialPath, gcc, bash { stdenv, name, preHook ? null, postHook ? null, initialPath, gcc, shell
, param1 ? "", param2 ? "", param3 ? "", param4 ? "", param5 ? "" , param1 ? "", param2 ? "", param3 ? "", param4 ? "", param5 ? ""
}: }:
@ -13,17 +13,17 @@ let {
setup = ./setup.sh; setup = ./setup.sh;
inherit preHook postHook initialPath gcc; inherit preHook postHook initialPath gcc shell;
# TODO: make this more elegant. # TODO: make this more elegant.
inherit param1 param2 param3 param4 param5; inherit param1 param2 param3 param4 param5;
} }
# Add a utility function to produce derivations that use this # Add a utility function to produce derivations that use this
# stdenv and its the bash shell. # stdenv and its shell.
// { // {
mkDerivation = attrs: derivation (attrs // { mkDerivation = attrs: derivation (attrs // {
builder = bash; builder = shell;
args = ["-e" (if attrs ? builder then attrs.builder else ./default-builder.sh)]; args = ["-e" (if attrs ? builder then attrs.builder else ./default-builder.sh)];
stdenv = body; stdenv = body;
system = body.system; system = body.system;

View File

@ -15,6 +15,7 @@ fi
# Execute the pre-hook. # Execute the pre-hook.
export SHELL=@shell@
param1=@param1@ param1=@param1@
param2=@param2@ param2=@param2@
param3=@param3@ param3=@param3@

View File

@ -7,21 +7,25 @@
let { let {
shell = "/bin/sh";
body = body =
derivation { derivation {
inherit system name; inherit system name;
builder = "/bin/sh"; builder = shell;
args = ["-e" ./builder.sh]; args = ["-e" ./builder.sh];
} }
// { // {
mkDerivation = attrs: derivation (attrs // { mkDerivation = attrs: derivation (attrs // {
builder = "/bin/sh"; builder = shell;
args = ["-e" attrs.builder]; args = ["-e" attrs.builder];
stdenv = body; stdenv = body;
system = body.system; system = body.system;
}); });
inherit shell;
}; };
} }

View File

@ -15,5 +15,5 @@ genericStdenv {
inherit stdenv; inherit stdenv;
}; };
bash = "/bin/sh"; shell = "/bin/sh";
} }

View File

@ -1,3 +1 @@
export SHELL=/bin/sh
export NIX_ENFORCE_PURITY= export NIX_ENFORCE_PURITY=

View File

@ -1,19 +0,0 @@
{stdenv, glibc, genericStdenv, gccWrapper}:
genericStdenv {
name = "stdenv-nix-linux-boot";
preHook = ./prehook-boot.sh;
initialPath = "/usr/local /usr /";
inherit stdenv;
gcc = gccWrapper {
name = "gcc-native";
nativeTools = true;
nativeGlibc = false;
nativePrefix = "/usr";
inherit stdenv glibc;
};
bash = "/bin/sh";
}

View File

@ -12,10 +12,9 @@ genericStdenv {
nativeTools = false; nativeTools = false;
nativeGlibc = false; nativeGlibc = false;
inherit (pkgs) gcc binutils; inherit (pkgs) gcc binutils;
inherit glibc; inherit stdenv glibc;
shell = pkgs.bash ~ /bin/sh;
}; };
bash = pkgs.bash ~ /bin/sh; shell = pkgs.bash ~ /bin/sh;
param1 = pkgs.bash;
} }

View File

@ -1,3 +0,0 @@
export SHELL=/bin/sh
export NIX_ENFORCE_PURITY=

View File

@ -1,3 +1 @@
export SHELL=$param1
export NIX_ENFORCE_PURITY=1 export NIX_ENFORCE_PURITY=1

View File

@ -13,9 +13,8 @@ genericStdenv {
nativeGlibc = true; nativeGlibc = true;
inherit (pkgs) gcc binutils; inherit (pkgs) gcc binutils;
inherit stdenv; inherit stdenv;
shell = pkgs.bash ~ /bin/sh;
}; };
bash = pkgs.bash ~ /bin/sh; shell = pkgs.bash ~ /bin/sh;
param1 = pkgs.bash;
} }

View File

@ -1 +1,2 @@
export SHELL=$param1 export NIX_ENFORCE_PURITY=1
export NIX_IGNORE_LD_THROUGH_GCC=1

View File

@ -38,19 +38,14 @@
# The Nix build environment. # The Nix build environment.
stdenvNix = (import ../stdenv/nix) { stdenvNix = (import ../stdenv/nix) {
stdenv = stdenvNative; stdenv = stdenvNative;
pkgs = stdenvNixBootPkgs; pkgs = stdenvNativePkgs;
inherit genericStdenv gccWrapper; inherit genericStdenv gccWrapper;
}; };
stdenvNixBootPkgs = allPackages {
stdenv = stdenvNative;
bootCurl = null;
noSysDirs = true;
};
stdenvNixPkgs = allPackages { stdenvNixPkgs = allPackages {
stdenv = stdenvNix; stdenv = stdenvNix;
bootCurl = stdenvNixBootPkgs.curl; bootCurl = stdenvNativePkgs.curl;
noSysDirs = false;
}; };
@ -59,40 +54,53 @@
# 1) Build glibc in the Nix build environment. The result is # 1) Build glibc in the Nix build environment. The result is
# pure. # pure.
stdenvLinuxGlibc = stdenvNativePkgs.glibc; # !!! should be NixPkgs, but doesn't work stdenvLinuxGlibc = stdenvNixPkgs.glibc;
# 2) Construct a stdenv consisting of the native build environment, # 2) Construct a stdenv consisting of the Nix build environment, but
# plus the pure glibc. # with a gcc-wrapper that causes linking against the glibc from
stdenvLinuxBoot1 = (import ../stdenv/nix-linux/boot.nix) { # step 1. However, since the gcc wrapper here *does* look in
# native system directories (e.g., `/usr/lib'), it doesn't
# prevent impurity in the things it builds (e.g., through
# `-lncurses').
stdenvLinuxBoot1 = (import ../stdenv/nix-linux) {
stdenv = stdenvNative; stdenv = stdenvNative;
pkgs = stdenvNativePkgs;
glibc = stdenvLinuxGlibc; glibc = stdenvLinuxGlibc;
inherit genericStdenv gccWrapper; inherit genericStdenv gccWrapper;
}; };
# 3) Now we can build packages that will have the Nix glibc. # 3) Now we can build packages that will link against the Nix
# glibc. We are on thin ice here: the compiler used to build
# these packages doesn't prevent impurity, so e.g. bash ends up
# linking against `/lib/libncurses.so', but the glibc from step 1
# *doesn't* search in `/lib' etc. So these programs won't work.
stdenvLinuxBoot1Pkgs = allPackages { stdenvLinuxBoot1Pkgs = allPackages {
stdenv = stdenvLinuxBoot1; stdenv = stdenvLinuxBoot1;
bootCurl = null; bootCurl = stdenvNativePkgs.curl;
noSysDirs = true;
}; };
# 4) However, since these packages are built by an native C compiler # 4) Therefore we build a new standard environment which is the same
# and linker, they may well pick up impure references (e.g., bash # as the one in step 2, but with a gcc and binutils from step 3
# might end up linking against /lib/libncurses). So repeat, but # merged in. Since these are pure (they don't search native
# now use the Nix-built tools from step 2/3. # system directories), things built by this stdenv should be pure.
stdenvLinuxBoot2 = (import ../stdenv/nix-linux) { stdenvLinuxBoot2 = (import ../stdenv/nix-linux) {
stdenv = stdenvLinuxBoot1; stdenv = stdenvLinuxBoot1;
pkgs = stdenvLinuxBoot1Pkgs; pkgs = stdenvNativePkgs // {
inherit (stdenvLinuxBoot1Pkgs) gcc binutils;
};
glibc = stdenvLinuxGlibc; glibc = stdenvLinuxGlibc;
inherit genericStdenv gccWrapper; inherit genericStdenv gccWrapper;
}; };
# 5) These packages should be pure. # 5) So these packages should be pure.
stdenvLinuxBoot2Pkgs = allPackages { stdenvLinuxBoot2Pkgs = allPackages {
stdenv = stdenvLinuxBoot2; stdenv = stdenvLinuxBoot2;
bootCurl = stdenvLinuxBoot1Pkgs.curl; bootCurl = stdenvNativePkgs.curl;
}; };
# 6) So finally we can construct the Nix build environment. # 6) Finally we can construct the Nix build environment from the
# packages from step 5.
stdenvLinux = (import ../stdenv/nix-linux) { stdenvLinux = (import ../stdenv/nix-linux) {
stdenv = stdenvLinuxBoot2; stdenv = stdenvLinuxBoot2;
pkgs = stdenvLinuxBoot2Pkgs; pkgs = stdenvLinuxBoot2Pkgs;
@ -109,7 +117,20 @@
} // } //
{inherit (stdenvLinuxBoot2Pkgs) {inherit (stdenvLinuxBoot2Pkgs)
gzip bzip2 bash binutils coreutils diffutils findutils gawk gcc gzip bzip2 bash binutils coreutils diffutils findutils gawk gcc
gnumake gnused gnutar gnugrep wget; gnumake gnused gnutar gnugrep curl;
} // } //
{glibc = stdenvLinuxGlibc;}; {glibc = stdenvLinuxGlibc;};
# In summary, we build gcc (and binutils) three times:
# - in stdenvLinuxBoot1 (from stdenvNativePkgs); impure
# - in stdenvLinuxBoot2 (from stdenvLinuxBoot1Pkgs); pure
# - in stdenvLinux (from stdenvLinuxBoot2Pkgs); pure
# The last one may be redundant, but its good for validation (since
# the second one may use impure inputs). To reduce build time, we
# could reduce the number of bootstrap stages inside each gcc build.
# Right now there are 3 stages, so gcc is built 9 times!
# On the other hand, a validating build of glibc is a good idea (it
# probably won't work right now due to --rpath madness).
} }

View File

@ -39,4 +39,4 @@ g++ hello2.cc -o $out/bin/hello2 -DVALUE="1 + 2 * 3"
$out/bin/hello2 $out/bin/hello2
ld -v ld -v

View File

@ -2,15 +2,14 @@ let {
system = "i686-linux"; system = "i686-linux";
stdenvs = (import ../../system/stdenvs.nix) { stdenvs = (import ../../system/stdenvs.nix) {
system = "i686-linux"; inherit system;
allPackages = import ../../system/all-packages-generic.nix; allPackages = import ../../system/all-packages-generic.nix;
}; };
stdenv = stdenvs.stdenvLinux; stdenv = stdenvs.stdenvNix;
test = derivation { test = stdenv.mkDerivation {
name = "simple-test"; name = "simple-test";
inherit system stdenv;
builder = ./builder.sh; builder = ./builder.sh;
}; };