Tip: Building on macOS Catalina with Command Line Tools 11.1 #5524
metayan
started this conversation in
Show and tell
Replies: 1 comment
-
Weird, the SDK's frameworks path should already be in the include paths clang looks in. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
was causing
Solved it by pointing to the not found framework and building with
mkdir -p build/frameworks ln -s /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework build/frameworks/ CFLAGS="-Fbuild/frameworks" make app
Note:
Just pointing to the
Command Line Tools
framework directory withCFLAGS="-F/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks" make app
didn't work. Got lots of errors instead.
Beta Was this translation helpful? Give feedback.
All reactions