mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
ponyc: FIX $CC undefined, using gcc as the linker
https://github.com/ponylang/ponyc/issues/2482
This commit is contained in:
parent
f607771d0f
commit
a628055e5c
@ -69,8 +69,10 @@ stdenv.mkDerivation ( rec {
|
||||
+ stdenv.lib.optionalString stdenv.isDarwin '' bits=64 ''
|
||||
+ stdenv.lib.optionalString (stdenv.isDarwin && (!lto)) '' lto=no ''
|
||||
+ '' install
|
||||
mv $out/bin/ponyc $out/bin/ponyc.wrapped
|
||||
makeWrapper $out/bin/ponyc.wrapped $out/bin/ponyc \
|
||||
|
||||
wrapProgram $out/bin/ponyc \
|
||||
--prefix PATH ":" "${stdenv.cc}/bin" \
|
||||
--set-default CC "$CC" \
|
||||
--prefix PONYPATH : "$out/lib" \
|
||||
--prefix PONYPATH : "${stdenv.lib.getLib pcre2}/lib" \
|
||||
--prefix PONYPATH : "${stdenv.lib.getLib libressl}/lib"
|
||||
|
Loading…
Reference in New Issue
Block a user