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
If the SYSROOT environment variable is not specified locally, it will cause compilation errors.
fatal error: 'TargetConditionals.h' file not found
To ensure compatibility with these scenarios, it is recommended to specify the -isysroot flag for clang. Chromium has also made similar adjustments in build/config/mac/BUILD.gn.
The text was updated successfully, but these errors were encountered:
Describe the bug
When there are multiple Xcode.app installed on the local machine and the Xcode SDK path is changed using
xcode-select
, for example:If the
SYSROOT
environment variable is not specified locally, it will cause compilation errors.To ensure compatibility with these scenarios, it is recommended to specify the
-isysroot
flag forclang
. Chromium has also made similar adjustments inbuild/config/mac/BUILD.gn
.The text was updated successfully, but these errors were encountered: