summaryrefslogtreecommitdiffstats
path: root/pkgs/stdenv/linux/make-bootstrap-tools.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-08 00:32:12 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-08 00:32:12 +0000
commit4b27d2870197b26b7c170caa333944231715d4a3 (patch)
tree6b781861cb96e9ce0660ca0b904ed3dda1cc6905 /pkgs/stdenv/linux/make-bootstrap-tools.nix
parent6e86ca940f9cb7fdbbf8663bc5c19af45fbc1e17 (diff)
Porting changes from stdenv-updates into this branch.
This comes from: svn diff ^/nixpkgs/trunk/@18255 ^/nixpkgs/branches/stdenv-updates/ > diff patch -p0 < diff and then adding into svn all files new from the patch. trunk@18255 comes from the last time I updated stdenv-updates from trunk. svn path=/nixpkgs/stdenv-updates2/; revision=18272
Diffstat (limited to 'pkgs/stdenv/linux/make-bootstrap-tools.nix')
-rw-r--r--pkgs/stdenv/linux/make-bootstrap-tools.nix19
1 files changed, 13 insertions, 6 deletions
diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix
index de8a25c6f64c..0a19adbdbb47 100644
--- a/pkgs/stdenv/linux/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix
@@ -10,20 +10,26 @@ rec {
aclSupport = false;
});
+ gccLinkStatic = wrapGCCWith (import ../../build-support/gcc-wrapper) uclibc
+ stdenv.gcc.gcc;
+ stdenvLinkStatic = overrideGCC stdenv gccLinkStatic;
- curlDiet = import ../../tools/networking/curl {
+ curlStatic = import ../../tools/networking/curl {
+ stdenv = stdenvLinkStatic;
inherit fetchurl;
- stdenv = useDietLibC stdenv;
zlibSupport = false;
sslSupport = false;
+ linkStatic = true;
};
- bzip2Diet = import ../../tools/compression/bzip2 {
+ bzip2Static = import ../../tools/compression/bzip2 {
+ stdenv = stdenvLinkStatic;
inherit fetchurl;
- stdenv = useDietLibC stdenv;
+ linkStatic = true;
};
+ #gccNoShared = wrapGCC ( gcc.gcc.override { enableShared = false; } );
build =
@@ -33,6 +39,7 @@ rec {
buildInputs = [nukeReferences cpio];
buildCommand = ''
+ set -x
ensureDir $out/bin $out/lib $out/libexec
# Copy what we need of Glibc.
@@ -132,8 +139,8 @@ rec {
cp ${klibc}/lib/klibc/bin.static/cpio $out/in-nixpkgs
cp ${klibc}/lib/klibc/bin.static/mkdir $out/in-nixpkgs
cp ${klibc}/lib/klibc/bin.static/ln $out/in-nixpkgs
- cp ${curlDiet}/bin/curl $out/in-nixpkgs
- cp ${bzip2Diet}/bin/bzip2 $out/in-nixpkgs
+ cp ${curlStatic}/bin/curl $out/in-nixpkgs
+ cp ${bzip2Static}/bin/bzip2 $out/in-nixpkgs
chmod u+w $out/in-nixpkgs/*
strip $out/in-nixpkgs/*
nuke-refs $out/in-nixpkgs/*