mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
970d80b0ff
The previous version could produce unparseable flags.
13 lines
479 B
Bash
13 lines
479 B
Bash
prependSearchPath() {
|
|
NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks ${NIX_CFLAGS_COMPILE}"
|
|
}
|
|
|
|
linkWithRealCF() {
|
|
# gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not
|
|
# in the opensource release
|
|
# if the package needs private headers, we assume they also want to link with system CF
|
|
NIX_LDFLAGS+=" /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
|
|
}
|
|
|
|
preConfigureHooks+=(prependSearchPath linkWithRealCF)
|