Files
Ben Siraphob f6bbbded6d minimal-bootstrap: trim configure flags and slim python
Adds --enable-checking=release and --disable-{libgomp,libquadmath,libitm,libvtv,libssp,libatomic,libstdcxx-pch,nls} to all GCCs (those runtime libs are unused by the stdenv); switches gcc-4.6{,cxx} to install-strip; adds --disable-nls to binutils and coreutils; adds --disable-test-modules --without-ensurepip --without-static-libpython to python.

Bootstrap self-size 1.45 GB -> 940 MB; gcc46-cxx -14%, glibc -10%, gcc-latest -6% wall on the heavy builds.

(make -j was tried on tcc-built derivations and broke them silently; NOTE comments left in the affected files so this isn't re-attempted.)
2026-04-26 22:25:28 -07:00

65 lines
1.3 KiB
Nix

{
lib,
fetchurl,
bash,
tinycc,
gnumake,
gnused,
gnugrep,
}:
let
pname = "gzip";
version = "1.2.4";
src = fetchurl {
url = "mirror://gnu/gzip/gzip-${version}.tar.gz";
sha256 = "0ryr5b00qz3xcdcv03qwjdfji8pasp0007ay3ppmk71wl8c1i90w";
};
in
bash.runCommand "${pname}-${version}"
{
inherit pname version;
nativeBuildInputs = [
tinycc.compiler
gnumake
gnused
gnugrep
];
passthru.tests.get-version =
result:
bash.runCommand "${pname}-get-version-${version}" { } ''
${result}/bin/gzip --version
mkdir $out
'';
meta = {
description = "GNU zip compression program";
homepage = "https://www.gnu.org/software/gzip";
license = lib.licenses.gpl3Plus;
teams = [ lib.teams.minimal-bootstrap ];
platforms = lib.platforms.unix;
};
}
''
# Unpack
ungz --file ${src} --output gzip.tar
untar --file gzip.tar
rm gzip.tar
cd gzip-${version}
# Configure
export CC="tcc -B ${tinycc.libs}/lib -Dstrlwr=unused"
bash ./configure --prefix=$out \
--disable-dependency-tracking
# Build
# NOTE: parallel build (-j) under tinycc-bootstrappable is unstable; keep serial.
make
# Install
mkdir $out
make install
''