minimal-bootstrap.gawk: use libs from tinycc-musl

This commit is contained in:
Emily Trau 2023-09-21 22:07:51 -07:00
parent 7287781fc3
commit a5d9d1cf49
2 changed files with 1 additions and 3 deletions

View File

@ -55,7 +55,6 @@ lib.makeScope
gawk = callPackage ./gawk {
bash = bash_2_05;
tinycc = tinycc-musl;
musl = musl11;
bootGawk = gawk-mes;
};

View File

@ -4,7 +4,6 @@
, fetchurl
, bash
, tinycc
, musl
, gnumake
, gnugrep
, gnused
@ -46,7 +45,7 @@ bash.runCommand "${pname}-${version}" {
cd gawk-${version}
# Configure
export CC="tcc -B ${musl}/lib"
export CC="tcc -B ${tinycc.libs}/lib"
export AR="tcc -ar"
export LD=tcc
bash ./configure \