forked from mirrors/nixpkgs
racket: fix build via forcing -lgcc_s
This commit is contained in:
parent
fac74b7aa9
commit
1d62c6445f
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||||
sed -e 's@</fontconfig>@@' -i chroot-fontconfig/fonts.conf
|
sed -e 's@</fontconfig>@@' -i chroot-fontconfig/fonts.conf
|
||||||
echo "<dir>${liberation_ttf}</dir>" >> chroot-fontconfig/fonts.conf
|
echo "<dir>${liberation_ttf}</dir>" >> chroot-fontconfig/fonts.conf
|
||||||
echo "</fontconfig>" >> chroot-fontconfig/fonts.conf
|
echo "</fontconfig>" >> chroot-fontconfig/fonts.conf
|
||||||
|
|
||||||
export FONTCONFIG_FILE=$(pwd)/chroot-fontconfig/fonts.conf
|
export FONTCONFIG_FILE=$(pwd)/chroot-fontconfig/fonts.conf
|
||||||
|
|
||||||
cd src
|
cd src
|
||||||
|
@ -37,6 +37,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [ "--enable-shared" "--enable-lt=${libtool}/bin/libtool" ];
|
configureFlags = [ "--enable-shared" "--enable-lt=${libtool}/bin/libtool" ];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = "-lgcc_s";
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for p in $(ls $out/bin/) ; do
|
for p in $(ls $out/bin/) ; do
|
||||||
wrapProgram $out/bin/$p --prefix LD_LIBRARY_PATH ":" "${ffiSharedLibs}" ;
|
wrapProgram $out/bin/$p --prefix LD_LIBRARY_PATH ":" "${ffiSharedLibs}" ;
|
||||||
|
|
Loading…
Reference in a new issue