gpt4 book ai didi

C++ boost 错误

转载 作者:太空狗 更新时间:2023-10-29 12:02:54 24 4
gpt4 key购买 nike

我正在基于此 fast factorial library 构建代码,这取决于 boost 和 mpir。我正在运行 Ubuntu 14.04 并使用 Netbeans 8.0.2。为了简单地测试库的 #include 语句,我编写了这段愚蠢的代码:

#include <iostream>
#include <mpir.h>
#include <primeswing.h>
#include <xmath.h>
/*
*
*/
int main() {
long x = 4;
std::cout << x;
return 0;
}

当我尝试编译它时却出现了以下错误

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/home/arengorn/NetBeansProjects/BA'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/ba
make[2]: Entering directory `/home/arengorn/NetBeansProjects/BA'
mkdir -p dist/Debug/GNU-Linux-x86
g++ -o dist/Debug/GNU-Linux-x86/ba build/Debug/GNU-Linux-x86/main.o ->lm
build/Debug/GNU-Linux-x86/main.o: In function `__static_initialization_and_destruction_0':
/usr/include/boost/system/error_code.hpp:222: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:223: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:224: undefined reference to `boost::system::system_category()'
collect2: error: ld returned 1 exit status
make[2]: *** [dist/Debug/GNU-Linux-x86/ba] Error 1
make[2]: Leaving directory `/home/arengorn/NetBeansProjects/BA'
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/home/arengorn/NetBeansProjects/BA'
make: *** [.build-impl] Error 2

BUILD FAILED (exit value 2, total time: 114ms)

谁能帮我解决为什么 boost 库(安装在/usr/include 下)不起作用?

最佳答案

正如 Wintermute 评论的那样

You need to link libboost_system.so. Put -lboost_system in your linker flags.

这解决了问题。

关于C++ boost 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28383167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com