You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when running cmake/conan from terminal and autoconf based recipes are compiled, we run into the issue that /Applications/Xcode11.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc is called as c compiler, not /usr/bin/clang. while the trampoline binary in /usr/bin will be able to resolve standard c headers, the executable in the app bundle needs to set SDKROOT
i'm wondering what's a good strategy for this without modifying the recipes?
The text was updated successfully, but these errors were encountered:
i ran into an issue related to #226 and friends:
when running cmake/conan from terminal and autoconf based recipes are compiled, we run into the issue that
/Applications/Xcode11.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
is called as c compiler, not/usr/bin/clang
. while the trampoline binary in/usr/bin
will be able to resolve standard c headers, the executable in the app bundle needs to setSDKROOT
i'm wondering what's a good strategy for this without modifying the recipes?
The text was updated successfully, but these errors were encountered: