nixpkgs/pkgs/stdenv/linux/new.nix
Eelco Dolstra 84dd812f33 Finally, the new stdenv-linux.
* The statically linked bootstrap tools are now automatically
  reproducable, just do:

  $ nix-build ./make-bootstrap-tools.nix

  The resulting binaries in result/in-nixpkgs go to
  stdenv/linux/bootstrap/<platform>/, and the tarballs in
  result/on-server go to
  https://svn.cs.uu.nl:12443/repos/trace/tarballs/trunk/stdenv-linux/<platform>/<revision>/.
  These are checked out on nix.cs.uu.nl under http://.../dist/tarballs.

* The statically linked libraries all use dietlibc now (except
  patchelf and glibc), so they are much smaller.  This is especially
  nice for the tools in the Nixpkgs tree, since it makes Nixpkgs
  tarballs smaller.

* Use Binutils 2.17 and GCC 4.1.1 for the bootstrap.

* The stdenv is now based on Glibc 2.5.  I hope it works ;-)

svn path=/nixpkgs/trunk/; revision=6803
2006-10-23 14:27:34 +00:00

207 lines
6.4 KiB
Nix

# This file constructs the standard build environment for the
# Linux/i686 platform. It's completely pure; that is, it relies on no
# external (non-Nix) tools, such as /usr/bin/gcc, and it contains a C
# compiler and linker that do not search in default locations,
# ensuring purity of components produced by it.
{system, allPackages}:
rec {
bootstrapTools = import ./bootstrap/i686;
# The bootstrap process proceeds in several steps.
# 1) Create a standard environment by downloading pre-built
# statically linked binaries of coreutils, gcc, etc.
# To fetch the pre-built binaries, we use a statically linked `curl'
# binary which is unpacked here.
curl = derivation {
inherit system;
name = "curl";
builder = bootstrapTools.bash;
inherit (bootstrapTools) bunzip2 cp curl;
args = [ ./new-scripts/unpack-curl.sh ];
};
# This function downloads a file.
download = {url, sha1, pkgname}: derivation {
name = baseNameOf (toString url);
builder = bootstrapTools.bash;
inherit system curl url;
args = [ ./new-scripts/download.sh ];
outputHashAlgo = "sha1";
outputHash = sha1;
};
# This function downloads and unpacks a file.
downloadAndUnpack = pkgname: {url, sha1}: derivation {
name = pkgname;
builder = bootstrapTools.bash;
inherit (bootstrapTools) bunzip2 tar cp;
args = [ ./new-scripts/unpack.sh ];
tarball = download {inherit url sha1 pkgname;};
inherit system;
allowedReferences = [];
};
# The various statically linked components that make up the standard
# environment.
staticTools = downloadAndUnpack "static-tools" bootstrapTools.staticToolsURL;
staticBinutils = downloadAndUnpack "static-binutils" bootstrapTools.binutilsURL;
staticGCC = (downloadAndUnpack "static-gcc" bootstrapTools.gccURL)
// { langC = true; langCC = false; langF77 = false; };
staticGlibc = downloadAndUnpack "static-glibc" bootstrapTools.glibcURL;
# A helper function to call gcc-wrapper.
wrapGCC =
{gcc ? staticGCC, glibc, binutils, shell ? ""}:
(import ../../build-support/gcc-wrapper) {
nativeTools = false;
nativeGlibc = false;
inherit gcc binutils glibc shell;
stdenv = stdenvInitial;
};
# The "fake" standard environment used to build "real" standard
# environments. It consists of just the basic statically linked
# tools.
stdenvInitial = let {
body = derivation {
name = "stdenv-linux-initial";
builder = bootstrapTools.bash;
args = [ ./new-scripts/builder-stdenv-initial.sh ];
inherit system staticTools curl;
} // {
# !!! too much duplication with stdenv/generic/default.nix
mkDerivation = attrs: (derivation ((removeAttrs attrs ["meta"]) // {
builder = bootstrapTools.bash;
args = ["-e" attrs.builder];
stdenv = body;
system = body.system;
})) // { meta = if attrs ? meta then attrs.meta else {}; };
shell = bootstrapTools.bash;
};
};
# This function builds the various standard environments used during
# the bootstrap.
stdenvBootFun =
{gcc, staticGlibc, extraAttrs ? {}}:
import ../generic {
name = "stdenv-linux-boot";
param1 = if staticGlibc then "static" else "dynamic";
preHook = ./new-scripts/prehook.sh;
stdenv = stdenvInitial;
shell = bootstrapTools.bash;
initialPath = [
staticTools
];
inherit gcc extraAttrs;
};
# Create the first "real" standard environment. This one consists
# of statically linked components only, and a minimal glibc to keep
# the gcc configure script happy.
stdenvLinuxBoot1 = stdenvBootFun {
# Use the statically linked, downloaded glibc/gcc/binutils.
gcc = wrapGCC {glibc = staticGlibc; binutils = staticBinutils;};
staticGlibc = true;
extraAttrs = {inherit curl;};
};
# 2) These are the packages that we can build with the first
# stdenv. We only need Glibc (in step 3).
stdenvLinuxBoot1Pkgs = allPackages {
inherit system;
bootStdenv = stdenvLinuxBoot1;
};
# 3) Build Glibc with the statically linked tools. The result is the
# full, dynamically linked, final Glibc.
stdenvLinuxGlibc = stdenvLinuxBoot1Pkgs.glibcNew;
# 4) Construct a second stdenv identical to the first, except that
# this one uses the Glibc built in step 3. It still uses
# statically linked tools.
stdenvLinuxBoot2 = removeAttrs (stdenvBootFun {
staticGlibc = false;
gcc = wrapGCC {binutils = staticBinutils; glibc = stdenvLinuxGlibc;};
extraAttrs = {inherit curl; glibc = stdenvLinuxGlibc;};
}) ["gcc" "binutils"];
# 5) The packages that can be built using the second stdenv.
stdenvLinuxBoot2Pkgs = allPackages {
inherit system;
bootStdenv = stdenvLinuxBoot2;
};
# 6) Construct a third stdenv identical to the second, except that
# this one uses the dynamically linked GCC and Binutils from step
# 5. The other tools (e.g. coreutils) are still static.
stdenvLinuxBoot3 = stdenvBootFun {
staticGlibc = false;
gcc = wrapGCC {
# inherit (stdenvLinuxBoot2Pkgs) binutils;
binutils = stdenvLinuxBoot2Pkgs.binutils217;
glibc = stdenvLinuxGlibc;
gcc = stdenvLinuxBoot2Pkgs.gcc.gcc;
};
extraAttrs = {inherit curl;};
};
# 7) The packages that can be built using the third stdenv.
stdenvLinuxBoot3Pkgs = allPackages {
inherit system;
bootStdenv = stdenvLinuxBoot3;
};
# 8) Construct the final stdenv. It uses the Glibc, GCC and
# Binutils built above, and adds in dynamically linked versions
# of all other tools.
stdenvLinux = (import ../generic) {
name = "stdenv-linux";
preHook = ./new-scripts/prehook.sh;
initialPath = [
((import ../common-path.nix) {pkgs = stdenvLinuxBoot3Pkgs;})
stdenvLinuxBoot3Pkgs.patchelf
];
stdenv = stdenvInitial;
gcc = wrapGCC {
# inherit (stdenvLinuxBoot2Pkgs) binutils;
binutils = stdenvLinuxBoot2Pkgs.binutils217;
glibc = stdenvLinuxGlibc;
gcc = stdenvLinuxBoot2Pkgs.gcc.gcc;
shell = stdenvLinuxBoot3Pkgs.bash + "/bin/sh";
};
shell = stdenvLinuxBoot3Pkgs.bash + "/bin/sh";
extraAttrs = {
curl = stdenvLinuxBoot3Pkgs.realCurl;
inherit (stdenvLinuxBoot2Pkgs) binutils /* gcc */ glibc;
inherit (stdenvLinuxBoot3Pkgs)
gzip bzip2 bash coreutils diffutils findutils gawk
gnumake gnused gnutar gnugrep patch patchelf;
};
};
}