我需要链接到 xcode 3.2.6 项目中 /root/lib 和 /root/include 中的 .so 文件和头文件。ROOT 是 CERN 的一个分析框架。
有一个实用程序 root-config,它将返回所有必要的库,我可以使用以下命令在命令行上编译:
CFLAGS = `root-config --cflags`
GLIBS = `root-config --glibs`
test : main.cpp main.h
g++ $(CFLAGS) $(GLIBS) -g -Wall main.cpp -02 -o test
程序运行良好,没有错误。但是,我想在整个项目中使用 xcode,但也无法使用
答:使用此实用程序
或者
B:搜索 .so 文件的正确路径。我在构建设置下的构建变量 header_search_paths 和 library_search_paths 中包含了 /root/lib 和 /root/include 。然后我实际上将我需要的文件输入到 other_linker_flags 中,如下所示:
-llibTree -llibHist -llibRIO -llibCint -llibCore
xcode 返回消息:
ld: library not found for -llibTree
collect2: ld returned 1 exit status
Command /Developer/usr/bin/g++-4.2 failed with exit code 1
有人知道发生了什么吗?xCode 可以编译 .so 文件吗?这里还有其他问题吗?