1. 程式人生 > >Xcode10 library not found for -lstdc++ 找不到問題

Xcode10 library not found for -lstdc++ 找不到問題

在Xcode9上正常編譯的專案,在Xcode10上編譯可能會遇到如下錯誤:

library not found for -lstdc++.6.0.9
library not found for -lstdc++.6
library not found for -lstdc++

 

這是因為Xcode10徹底廢棄了libstdc++,相關的庫檔案libstdc++.6.0.9.dyliblibstdc++.6.dyliblibstdc++.dyliblibstdc++.6.0.9.tbdlibstdc++.6.tbdlibstdc++.tbd

也從Xcode10中刪除了。

最好的解決辦法還是儘快轉到libc++開發

如果還想要繼續在Xcode10上編譯依賴libstdc++的專案或庫,可以通過把Xcode9中的libstdc++相關庫檔案複製到Xcode10中即可。
在Xcode9中搜索libstdc++相關的庫,可以找到四個相關的檔案:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libstdc++.6.0.9.dylib

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/libstdc++.6.0.9.tbd

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/libstdc++.6.0.9.tbd

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libstdc++.6.0.9.tbd

  

但是隻找到了libstdc++.6.0.9.dyliblibstdc++.6.0.9.tbd ,找不到libstdc++.6.dyliblibstdc++.dyliblibstdc++.6.tbdlibstdc++.tbd,前往找到的這4個路徑中會就會發現libstdc++.6.dyliblibstdc++.dyliblibstdc++.6.0.9.dylib的替身,libstdc++.6.tbdlibstdc++.tbdlibstdc++.6.0.9.tbd 的替身:

 
libstdc++.6.0.9.dylib   libstdc++.6.0.9.tbd

所以我嘗試將libstdc++.6.0.9.dyliblibstdc++.6.0.9.tbd 複製到Xcode10中,並製作libstdc++.6.dyliblibstdc++.dyliblibstdc++.6.tbdlibstdc++.tbd這四個替身檔案,但是在模擬器上執行崩潰,自己製作替身的方案不可行,然後我改為了製作副本的方式成功在模擬器上執行。

libstdc++.6.0.9.dyliblibstdc++.6.0.9.tbd以及製作好的副本libstdc++.6.dyliblibstdc++.dyliblibstdc++.6.tbdlibstdc++.tbd下載地址點這裡

真機執行庫
在終端輸入以下命令開啟Xcode的lib庫目錄(此目錄位安裝的預設目錄)

open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib

如果安裝在其他目錄 或者Xcode改名的建議右鍵Xcode顯示報內容,進入

Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib

獲取到的 真機的 libstdc++.6.0.9.tbd 檔案,扔進去或按照上方連結執行sh指令碼