* Statically linked binaries for the stdenv-linux bootstrap on
x86_64. Glibc doens't build yet, though (it needs libgcc_eh, which is strangely missing from the static GCC build). svn path=/nixpkgs/trunk/; revision=6815
This commit is contained in:
parent
1a060e3b81
commit
8298be4ccf
BIN
pkgs/stdenv/linux/bootstrap/x86_64/bash
Executable file
BIN
pkgs/stdenv/linux/bootstrap/x86_64/bash
Executable file
Binary file not shown.
BIN
pkgs/stdenv/linux/bootstrap/x86_64/bunzip2
Executable file
BIN
pkgs/stdenv/linux/bootstrap/x86_64/bunzip2
Executable file
Binary file not shown.
BIN
pkgs/stdenv/linux/bootstrap/x86_64/cp
Executable file
BIN
pkgs/stdenv/linux/bootstrap/x86_64/cp
Executable file
Binary file not shown.
BIN
pkgs/stdenv/linux/bootstrap/x86_64/curl.bz2
Executable file
BIN
pkgs/stdenv/linux/bootstrap/x86_64/curl.bz2
Executable file
Binary file not shown.
27
pkgs/stdenv/linux/bootstrap/x86_64/default.nix
Normal file
27
pkgs/stdenv/linux/bootstrap/x86_64/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
bash = ./bash;
|
||||||
|
bunzip2 = ./bunzip2;
|
||||||
|
cp = ./cp;
|
||||||
|
curl = ./curl.bz2;
|
||||||
|
tar = ./tar.bz2;
|
||||||
|
|
||||||
|
staticToolsURL = {
|
||||||
|
url = file:///tmp/tarballs/static-tools.tar.bz2;
|
||||||
|
sha1 = "806f9644bf155069315bdd66138764b3d8619348";
|
||||||
|
};
|
||||||
|
|
||||||
|
binutilsURL = {
|
||||||
|
url = file:///tmp/tarballs/binutils.tar.bz2;
|
||||||
|
sha1 = "b55055c50cfcd2ab02e20f49ad8ca72315252a1c";
|
||||||
|
};
|
||||||
|
|
||||||
|
gccURL = {
|
||||||
|
url = file:///tmp/tarballs/gcc.tar.bz2;
|
||||||
|
sha1 = "a2ac17b6e7ce6d07c01e090b801c1622f56d8b39";
|
||||||
|
};
|
||||||
|
|
||||||
|
glibcURL = {
|
||||||
|
url = file:///tmp/tarballs/glibc.tar.bz2;
|
||||||
|
sha1 = "59d4d5a25ecd8b2f741d80e80d172bd6e7e06d89";
|
||||||
|
};
|
||||||
|
}
|
BIN
pkgs/stdenv/linux/bootstrap/x86_64/tar.bz2
Executable file
BIN
pkgs/stdenv/linux/bootstrap/x86_64/tar.bz2
Executable file
Binary file not shown.
@ -8,7 +8,10 @@
|
|||||||
|
|
||||||
rec {
|
rec {
|
||||||
|
|
||||||
bootstrapTools = import ./bootstrap/i686;
|
bootstrapTools =
|
||||||
|
if system == "i686-linux" then import ./bootstrap/i686
|
||||||
|
else if system == "x86_64-linux" then import ./bootstrap/x86_64
|
||||||
|
else abort "unsupported platform for the pure Linux stdenv";
|
||||||
|
|
||||||
|
|
||||||
# The bootstrap process proceeds in several steps.
|
# The bootstrap process proceeds in several steps.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user