summary refs log blame commit diff
path: root/pkgs/os-specific/darwin/cf-private/setup-hook.sh
blob: ae9ed5d158457ec9e9c03901d3a046b3eb9a7e7f (plain) (tree)
1
2
3
4
5
6
7
8
9
                     
                                                                       





                                                                                         
                                                                                               


                                                     
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)