ld: library not found for -lGoogleToolboxForMac

2019-06-15 18:26发布

I am implementing firebase setup via pods.

My Pods file looks like following one.

# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'
# $(PROJECT_DIR)/build/Debug-iphoneos/GoogleToolboxForMac lib search path
target 'ProductName' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for mCura

pod 'Firebase/Core'
pod 'Firebase/Messaging'

end

Everything is fine with iPad simulator. its running but when I run my application in iDevice. It shows library not found.

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

I have already wasted 2 days for removing this error & tried everything I could find on net. And GoogleToolboxForMac library automatically installs when firebase pod get installed.

5条回答
放荡不羁爱自由
2楼-- · 2019-06-15 18:28

I was also getting this exception:

enter image description here

It fixed after opening the /platform/ios folder in Xcode instead of /platform/ios/MyApp.xcodeproj file.

查看更多
Explosion°爆炸
3楼-- · 2019-06-15 18:32

This StackOverflow question: Framework not found GoogleToolboxForMac had the answer that fixed this for me, but it was not the most highly upvoted answer. I had to go to the build settings for the GoogleToolboxForMac target and change the "Build Active Architecture Only" setting from Yes to No. Then clean and rebuild.

查看更多
闹够了就滚
4楼-- · 2019-06-15 18:38

I got the same error and it was fixed just by opening the project from the .xcworkspace file instead of the .xcodeproj.

查看更多
我想做一个坏孩纸
5楼-- · 2019-06-15 18:41

I change my pod file to following code and re-install pod. It installed all necessary files for GoogleToolboxForMac.

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'ProductName' do

  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'GoogleToolboxForMac', '~> 2.1'

end

After Installing pod

1) Change Scheme to Generic iOS Device and Build.

2) After build success you can see libGoogleToolboxForMac.a file in black colour instead of red.

3) Now select Device and run build on iDevice. Follow screenshot.

enter image description here

Or you can have build library libGoogleToolboxForMac.a

查看更多
forever°为你锁心
6楼-- · 2019-06-15 18:50

Sigh.

For my Cordova project I just removed plugins, platforms and node_modules, readded IOS, and double clicked instead of using alt-down to open the xsworkspace and suddenly it magically worked.

Posting this here so I remember that it might be unnecessary to look for a real solution.

查看更多
登录 后发表回答