0

当我尝试编译使用该库的代码时出现以下错误

http://msgpack.org/,我尝试了 C++ 部分的第一个示例(库文档)

g++ hello.cc -lmsgpack -o hello

/usr/local/lib/libmsgpack.so: undefined reference to `__sync_sub_and_fetch_4'

任何帮助都是可观的..

g++ 版本详情..

$ g++ -v 使用内置规范。目标:i386-redhat-linux 配置:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads =posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++ ,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4。 2.0/jre --with-cpu=generic --host=i386-redhat-linux 线程模型:posix gcc 4.1.2 20080704 (Red Hat 4.1.2-46)

4

2 回答 2

0

请尝试更新您的 g++ 编译器。此类错误表明您的编译器太旧,而您尝试编译的代码对它来说太新了。

我使用的是 g++ 4.6.3 版,没有问题。

于 2012-06-04T11:55:15.330 回答
0

这个对我有用...

Update your GCC tool-chain. Or try to add -march=pentium or -march=i486, etc.

@qehgt 非常感谢 :-)

于 2012-10-01T10:32:26.780 回答