]> git.saurik.com Git - cydia.git/commitdiff
On new Xcode/macOS, /usr/include no longer exists.
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 13 Oct 2018 22:13:37 +0000 (15:13 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 13 Oct 2018 22:13:37 +0000 (15:13 -0700)
makefile

index a4c70ba3d612c4ab38d66bf857a2dec687ca6bc7..a0d3732b06c6c62208f5d91b09b09269b37f3b72 100644 (file)
--- a/makefile
+++ b/makefile
@@ -13,8 +13,10 @@ gxx := $(shell xcrun --sdk iphoneos -f g++)
 cycc := $(gxx)
 
 sdk := $(shell xcodebuild -sdk iphoneos -version Path)
+mac := $(shell xcodebuild -sdk macosx -version Path)
+
 cycc += -isysroot $(sdk)
-cycc += -idirafter /usr/include
+cycc += -idirafter $(mac)/usr/include
 cycc += -F$(sdk)/System/Library/PrivateFrameworks
 
 cycc += -fmessage-length=0