I download the Xcode_12_for_macOS_Universal_Apps_beta_2 version to build my OC project。I get the error Unsupported architecture.
the code throws the error
At the same time, I try to build swift project. If i choose the ios14 simulator, I get the error"unable to load standard library for target 'arm64-apple-ios12.0-simulator",but if i choose the ios12 simulator, it will succeed.
Thank you if anyone help me,wishing for your help.
the code throws the error
Code Block C /Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk/usr/include/sys/cdefs.h /* * Architecture validation for current SDK */ #if !defined(sys_cdefs_arch_unknown) && defined(i386) #elif !defined(sys_cdefs_arch_unknown) && defined(x86_64) #else #error Unsupported architecture #endif
At the same time, I try to build swift project. If i choose the ios14 simulator, I get the error"unable to load standard library for target 'arm64-apple-ios12.0-simulator",but if i choose the ios12 simulator, it will succeed.
Thank you if anyone help me,wishing for your help.