将活动目标切换到iPad时出现编译错误。当活动目标设置为iPhone时,不会发生错误。
我尝试将“图书馆搜索路径”修改为以下内容,但没有运气。 - $(继承) - \“$(SRCROOT)\” - \“$(SRCROOT)/ Classes \”
ld: library not found for -lGoogleAnalytics
collect2: ld returned 1 exit status
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
-GoogleAnalytics位于Classes / thirdparty / libGoogleAnalytics.a Classes / thirdparty / GANTracker.h
是否缺少属性构建设置?
答案 0 :(得分:1)
库路径搜索不是递归的。您需要为链接器找到的目录中的库显式添加Classes/thirdparty
路径。