[빌드에러] [Xcode15] Assertion failed: (false && "compact unwind compressed function offset doesn't fit in 24 bits"), function operator(), file Layout.cpp, line 5758.
Unity3D/iOS / 2023. 10. 13. 16:38
Xcode 15
Unity 2023.3.10f1
----
[Xcode Build Error]
Assertion failed: (false && "compact unwind compressed function offset doesn't fit in 24 bits"), function operator(), file Layout.cpp, line 5758.
Xcode 15로 업데이트 후 빌드를 했더니,
유니티 빌드는 정상적으로 됐는데 Xcode로 넘어와서는 위와 같은 에러를 내면서 빌드가 안된다.
혹시나해서 Mac OS 14로 업데이트도 해봤는데 빌드 실패함.
OTHER_LDFLAGS에 -ld_classic을 추가하라는 내용을 보고(아래 링크 참조) 추가해서 정상적으로 빌드 되는 것을 확인 함.
...
var pbxProject = new PBXProject();
pbxProject.ReadFromFile(projectPath);
//Unity Framework
target = pbxProject.GetUnityFrameworkTargetGuid();
pbxProject.AddBuildProperty(target, "OTHER_LDFLAGS", "-ld_classic");
반응형
'Unity3D > iOS' 카테고리의 다른 글
Apple Privacy Manifest(PrivacyInfo.xcprivacy) 대응 (0) | 2024.03.14 |
---|---|
[검수리젝] GDPR/IDFA(ATT) 관련 검수 리젝 (0) | 2024.02.21 |
[Runtime/Crash] com.apple.root.default-qos SIGABRT ABORT 0x00000001e01bf4c4 (0) | 2023.06.08 |
[Xcode] PostProcessBuild(with FixPodFile) (0) | 2022.12.11 |
[펌] UnityEngine.Videoplayer not rendering video on IOS Devices (0) | 2022.11.25 |