2016-11-16 89 views
4

一切工作正常,直到我得到我的mac格式。格式化后(从El Capitan移至Sierra),我克隆了存储库,安装了Cocoapods,确实是pod update。一切都搞砸了pods。我无法构建应用程序。错误与Cocoapods(我认为是)。错误如下:ld:框架未找到GTMOAuth2

ld: framework not found GTMOAuth2 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

我使用Xcode 8.0Swift 2.3,与Cocoapods 1.1.1

Podfile是:

# Uncomment this line to define a global platform for your project 
# platform :ios, '9.0' 

target 'ProjectName' do 
    # Comment this line if you're not using Swift and don't want to use dynamic frameworks 
    use_frameworks! 

    # Firebase Pods 
    pod 'Firebase' 
    pod 'Firebase/Messaging' 
    pod 'Firebase/Auth' 
    pod 'Firebase/Crash' 

    # Google Pods 
    pod 'Google/SignIn' 
    pod 'Google/Analytics' 

    # Crashlytics 
    pod 'Fabric' 
    pod 'Crashlytics' 

    # Facebook 
    # pod 'FacebookCore' 

    # Pods for ProjectName 

    target 'ProjectName Tests' do 
    inherit! :search_paths 
    # Pods for testing 
    end 

    target 'ProjectName UITests' do 
    inherit! :search_paths 
    # Pods for testing 
    end 
end 

也受到警告有关框架路径。这是如下:

ld: warning: directory not found for option '-F/Users/<user>/Library/Developer/Xcode/DerivedData/<project-name>-ftvbhpamiyfzmwdfpxknyvpcypde/Build/Products/Debug-iphonesimulator/GTMOAuth2' 

ld: warning: directory not found for option '-F/Users/<user>/Library/Developer/Xcode/DerivedData/<project-name>-ftvbhpamiyfzmwdfpxknyvpcypde/Build/Products/Debug-iphonesimulator/GTMSessionFetcher' 

ld: warning: directory not found for option '-F/Users/<user>/Library/Developer/Xcode/DerivedData/<project-name>-ftvbhpamiyfzmwdfpxknyvpcypde/Build/Products/Debug-iphonesimulator/GoogleToolboxForMac' 

回答

15

通过选择.xcworkspace(不.xcodeproj)重新打开你的项目,这3个警告和1个错误将会消失。

0

要解决此问题,请确保Build Active Architecture Only在您的项目构建设置中设置为No。 同时在所有Pod目标中设置Build Active Architecture OnlyNo,如附图所示。

enter image description here

然后清理并重建项目。