安装后找不到Xerces库



我正在尝试在Mac上运行Xerces。我们

 ./configure CFLAGS="-arch x86_64" CXXFLAGS="-arch x86_64" 
./configure --prefix=/opt
        sudo make (this builds the library)
        sudo make install (this installs the library)

我还包括NetBeans 中链接器上的libxerces-c.dylib

这是错误

 "/Applications/Xcode.app/Contents/Developer/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
"/Applications/Xcode.app/Contents/Developer/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-MacOSX/xerces
mkdir -p build/Debug/GNU-MacOSX/_ext/619588065
rm -f "build/Debug/GNU-MacOSX/_ext/619588065/SAXCount.o.d"
g++    -c -g -I/opt/lib/libxerces-c.dylib -MMD -MP -MF "build/Debug/GNU-MacOSX/_ext/619588065/SAXCount.o.d" -o build/Debug/GNU-MacOSX/_ext/619588065/SAXCount.o ../../Documents/xerces-c-3.1.2/samples/src/SAXCount/SAXCount.cpp
In file included from ../../Documents/xerces-c-3.1.2/samples/src/SAXCount/SAXCount.cpp:26:
../../Documents/xerces-c-3.1.2/samples/src/SAXCount/SAXCount.hpp:26:10: fatal error: 'xercesc/util/PlatformUtils.hpp' file not found
#include <xercesc/util/PlatformUtils.hpp>
         ^
1 error generated.
make[2]: *** [build/Debug/GNU-MacOSX/_ext/619588065/SAXCount.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
BUILD FAILED (exit value 2, total time: 128ms)

知道怎么解决这个问题吗??

谢谢!

  1. 在"项目"窗口中选择"项目"
  2. 右键单击可获得弹出菜单
  3. 在弹出菜单中选择Properties
  4. 在对话框左侧的"类别"列表中,选择"Build"下的"C++ Compiler"
  5. Include Directories添加一个目录。新目录的xercesc/util/子目录中应该有PlatformUtils.hpp。根据你的选择,我猜/opt/include/

更新

解决

ld:找不到-lxerces-c 的库

  1. 在对话框左侧的"类别"列表中,选择"Build"下的"Linker"
  2. 将包含libxerces-c.dylib和/或看起来是/opt/lib/libxerces-c.a的目录添加到Additional Library Directories字段中

相关内容

  • 没有找到相关文章

最新更新