Open AllenDang opened 5 days ago
Not reproducible, most likely it's something wrong with Xcode command line tools install (usually an old version that was not automatically updated with Xcode).
Try running xcode-select -p
. If it prints something other than /Applications/Xcode.app/Contents/Developer
run sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
.
Also check if you have custom toolchain in the PATH
. The error (missing __isPlatformVersionAtLeast
) is typical for either really ancient Xcode version (like Xcode 10), or incorrectly compiled custom llvm
toolchain (usually OSXCross without compiler-rt).
@bruvzg
❯ xcode-select -p
/Applications/Xcode.app/Contents/Developer
And my Xcode version is Version 16.1 (16B40), how can I check the incorrect compiled custom llvm toolchain to make it work?
Tested versions
System information
macOS 15.1.1 (24B91), Xcode Version 16.1 (16B40)
Issue description
Cannot build engine via
scons platform=macos target=template_release arch=arm64
, error message isSteps to reproduce
git pull
to pull latest masterscons platform=macos target=template_release arch=arm64
Minimal reproduction project (MRP)
N/A