關於Xcode10更新三方SDK報錯:library not found for -libstdc+

##前言 library not found for -libstdc++.6.0.9,今天作項目的時候碰到這個問題,解決的過程當中遇到了目錄路徑不對的問題(不在一般的/Applications/Xcode.app......下面),花費了我半天時間,記錄一下,也給別人當作參考。 ###解決方法 這個問題的緣由是Xcode10把libstdc++換成了libc++,解決方法有2種,選擇哪一種均可以,能解決問題就行;可是,值得注意的是這種狀況:你的項目引用了第三方庫(如極光推送),然而這個庫引用了舊庫libstdc++,這時候你只能用方法2了。全部解決方法以下:ios

方法1:  單擊項目名-->Build Phases-->Link Binary With Libraries,刪除6.0.9依賴添加Libc++.tdb  c++

在ios Xcode10下解決library not found for -libstdc+

:若是自己上圖已經沒有6.0.9依賴庫仍是報錯的話,點擊Pods-->Targets Support Files --> Pods-LifeFinancialStreet 找到後綴爲.xcconfig 的兩個文件找到6.0.9依賴庫刪掉便可 git

在ios Xcode10下解決library not found for -libstdc+

方法2:  對應文件夾下添加對應的三個庫,獲取Xcode9舊庫(對你有幫助github給個star)  ①在RuntimeRoot的lib裏面增長libstdc++.6.0.9.dylib,libstdc++.6.dylib,libstdc++.dylib,路徑以下:github

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/(下文有進入目錄方法)app

②在iPhoneOS.sdk的lib裏面增長libstdc++.6.0.9.tbd,libstdc++.6.tbd,libstdc++.tbd,路徑以下:ui

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

③在iPhoneSimulator.sdk的lib裏面增長libstdc++.6.0.9.tbd,libstdc++.6.tbd,libstdc++.tbd,路徑以下:orm

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/cdn

如何進入目錄

訪達-->前往文件夾...-->輸入路徑。(進不了目錄的繼續往下看)  blog

在ios Xcode10下能解決library not found for -libstdc+

在ios Xcode10下能解決library not found for -libstdc+

問題中的問題

有沒有小夥伴和我同樣進不去目錄的?把路徑複製上去,進不了,什麼狀況?我猜想是否是我Xcode的安裝路徑不同致使的?我使用mac系統的時間不是很長,不太瞭解是怎麼回事,後來在網上找到了查看安裝路徑的方法。活動監視器-->Xcode-->左上角第二個按鈕-->打開的文件和端口。對比着把頭替換掉就能夠了。(找不到活動監視器的往下看,不然可忽略)

/Users/feiwei/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/

在ios Xcode10下小白都能解決library not found for -libstdc+

活動監視器

這個步驟是寫給不怎麼會用mac的小夥伴的,有可能不在「其餘」這個歸類裏面,在Launchpad裏面找就行,你必定能找到的。上圖: 

在ios Xcode10下能解決library not found for -libstdc+

在ios Xcode10下能解決library not found for -libstdc+

在ios Xcode10下能解決library not found for -libstdc+
相關文章
相關標籤/搜索