我正在使用“调试”配置的模拟器构建iPhone应用程序。我收到了这个警告:
ld: warning: directory '/Users/myusername/Documents/iPhoneApps/TestGA/Source/build/GData.build/Debug/GDataFramework.build/Objects-normal/i386' following -L not found
我也收到了这个警告:
ld: warning: directory '/Users/myusername/Documents/iPhoneApps/TestGA/Source/build/Debug' following -F not found
有什么见解?我怎样才能解决这个问题?这些警告甚至意味着什么?
答案 0 :(得分:1)
答案 1 :(得分:0)
-L
通常是链接器ld
的参数,告诉它要搜索哪些目录库以便与您的代码链接。
你收到这个警告的事实本身并不是问题,除非你也得到它引起的错误(看起来并非如此)。 ld
会很乐意忽略不存在的目录。
如果您想摆脱警告,可以: