minimal-bootstrap.glibc: init at 2.38

This commit is contained in:
Emily Trau
2025-12-17 12:41:19 -05:00
committed by dish
parent 395cfc24a6
commit bac6125f3e
2 changed files with 121 additions and 0 deletions
@@ -142,6 +142,14 @@ lib.makeScope
gawk = gawk-mes;
};
glibc = callPackage ./glibc {
gcc = gcc-latest;
gnumake = gnumake-musl;
gnutar = gnutar-latest;
gnugrep = gnugrep-static;
gawk = gawk-static;
};
gnugrep = callPackage ./gnugrep {
bash = bash_2_05;
tinycc = tinycc-mes;
@@ -323,6 +331,7 @@ lib.makeScope
echo ${gcc46-cxx.tests.hello-world}
echo ${gcc8.tests.hello-world}
echo ${gcc-latest.tests.hello-world}
echo ${glibc.tests.hello-world}
echo ${gnugrep.tests.get-version}
echo ${gnugrep-static.tests.get-version}
echo ${gnum4.tests.get-version}
@@ -0,0 +1,112 @@
{
lib,
buildPlatform,
hostPlatform,
fetchurl,
bash,
gcc,
binutils,
linux-headers,
gnumake,
gnused,
gnugrep,
gawk,
diffutils,
findutils,
python,
bison,
gnutar,
xz,
}:
let
pname = "glibc";
version = "2.38";
src = fetchurl {
url = "mirror://gnu/libc/glibc-${version}.tar.xz";
hash = "sha256-+4KZiZiyspllRnvBtp0VLpwwfSzzAcnq+0VVt3DvP9I=";
};
linkerFile =
{
x86_64-linux = "ld-linux-x86-64";
i686-linux = "ld-linux";
}
.${buildPlatform.system};
in
bash.runCommand "${pname}-${version}"
{
inherit pname version;
nativeBuildInputs = [
gcc
binutils
gnumake
gnused
gnugrep
gawk
diffutils
findutils
python
bison
gnutar
xz
];
passthru.tests.hello-world =
result:
bash.runCommand "${pname}-simple-program-${version}"
{
nativeBuildInputs = [
gcc
binutils
];
}
''
cat <<EOF >> test.c
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
EOF
gcc \
-Wl,--dynamic-linker=${result}/lib/${linkerFile}.so.2 \
-B${result}/lib \
-I${result}/include \
-o test test.c
./test
mkdir $out
'';
meta = {
description = "The GNU C Library";
homepage = "https://www.gnu.org/software/libc/";
license = lib.licenses.lgpl2Plus;
platforms = lib.platforms.linux;
teams = [ lib.teams.minimal-bootstrap ];
};
}
''
# Unpack
tar xf ${src}
cd glibc-${version}
# Configure
mkdir build
cd build
# libstdc++.so is built against musl and fails to link
export CXX=false
bash ../configure \
--prefix=$out \
--build=${buildPlatform.config} \
--host=${hostPlatform.config} \
--with-headers=${linux-headers}/include
# Build
make -j $NIX_BUILD_CORES
# Install
make -j $NIX_BUILD_CORES INSTALL_UNCOMPRESSED=yes install
find $out/{bin,sbin,lib,libexec} -type f -exec strip --strip-unneeded {} + || true
''