0

当库路径包含空格时,它无法找到该路径。所以我用引号来包裹路径。路径找到了,但是在目录中找不到库。

例如:
Debug_Library_Path=-L"../Externals/TextLibrary/libs/with space/gccDebug/" Release_Library_Path=-L"../Externals/TextLibrary/libs/with space/gccRelease/"

Debug_Libraries=-Wl,--start-group -lTextLibrary -Wl,--end-group Release_Libraries=-Wl,--start-group -lTextLibrary -Wl,--end-group

提示:找不到“-lTextLibrary”

有谁知道可能导致此问题的原因?

4

1 回答 1

0

由于错误消息指出-lTextLibrary找不到(不是 TextLibrary!),我怀疑这是路径问题。相反,您的程序将您的选项解释为输入文件。检查您的程序使用哪种类型的参数,并可能尝试更改参数/选项的顺序。

于 2012-07-31T14:38:00.873 回答