Apple LLVM 6.1 Error (unity ios工程)
阿新 • • 發佈:2019-01-11
升級了xcode 打包untiy IOS工程 出現:Apple LLVM 6.1 Error
解決辦法是設定 BuildSetting----Apple LLVM6.1-code Generation----Optimization Level---None[-00]
我懷疑這個報錯應該是unity轉換工程的問題,非我們邏輯程式碼出錯。Optimization Level是指編譯器的優化層度,優化後的程式碼效率比較高,但是可讀性比較差,且編譯時間更長。
None:編譯器不會嘗試優化程式碼,當你專注解決邏輯錯誤、編譯速度快時使用此項。Do not use this option for shipping your executable.參考: http://forum.unity3d.com/threads/xcode-llvm-6-1-error.332082/ https://developer.apple.com/library/mac/documentation/General/Conceptual/MOSXAppProgrammingGuide/Performance/Performance.html