mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #77336 from matthewbauer/fix-missing-xmemdup-in-gnustep
gnustep/base: add libiberty to linker flags
This commit is contained in:
commit
063935621c
@ -9,6 +9,7 @@
|
||||
, libobjc, libgcrypt
|
||||
, icu
|
||||
, pkgconfig, portaudio
|
||||
, libiberty
|
||||
}:
|
||||
let
|
||||
version = "1.26.0";
|
||||
@ -30,8 +31,14 @@ gsmakeDerivation {
|
||||
libobjc libgcrypt
|
||||
icu
|
||||
portaudio
|
||||
libiberty
|
||||
];
|
||||
patches = [ ./fixup-paths.patch ];
|
||||
|
||||
# Bump to gcc9 has give missing xmemdup symbols. Need libiberty here
|
||||
# to resolve it, unclear why. See #76927 for more info
|
||||
NIX_LDFLAGS = "-liberty";
|
||||
|
||||
meta = {
|
||||
description = "An implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user