我对c非常不熟悉,但我需要为一个项目运行一个用c编写的服务器,这个项目包含一个CMakeLists.txt
,我用cmake -Bbuild
“执行”了它。
在build
文件夹中有一个Makefile,我用make
“执行”它。
现在,编译器或其他东西抛出一个错误:fatal error: boost/json.hpp: No such file or directory
所以boost/json.hpp
似乎不包括在内,然后我根据this指南手动安装了boost,并将其保存到目录/usr/local/include/
中。
运行cpp -v /dev/null -o /dev/null
告诉我,它在哪里查找包含的文件。这是结果:
Using built-in specs.
COLLECT_GCC=cpp
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2)
COLLECT_GCC_OPTIONS='-E' '-v' '-o' '/dev/null' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1 -E -quiet -v -imultiarch x86_64-linux-gnu /dev/null -o /dev/null -mtune=generic -march=x86-64 -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/9/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-E' '-v' '-o' '/dev/null' '-mtune=generic' '-march=x86-64'
字符串
在/usr/lib/gcc/x86_64-linux-gnu/9/include/
中没有boost
文件或目录,因此根据我的理解,它接下来应该在/usr/local/include/
中查找,在那里它找到一个boost_1_82_0
目录,其中包含boost
中所有需要的模块,包括json
。
尽管如此,上面提到的错误还是被抛出了。由于项目是外部提供给我的,我不相信错误来自Makefile或类似的东西。那么为什么它似乎找不到boost模块呢?
1条答案
按热度按时间yuvru6vn1#
CMake是“构建”makefile的程序。(确实如此)你不应该真正接触makefile本身,因为如果再次运行它,CMake会覆盖生成的makefile。为你的安装程序运行东西的简单方法应该是:0.删除你手动放置在任何地方的Boost文件1.通过使用包管理器安装它来获得Boost(例如
sudo apt install libboost-all-dev
)2.确保您的CMakeLists.txt(可能有多个文件具有此名称)包含类似以下行的内容:字符串
如果项目在其他机器上构建,则不需要执行步骤2。但需要进一步说明:
FIND_PACKAGE
找到boost安装并设置Boost_INCLUDE_DIR
Boost_LIBRARIES
变量。然后,INCLUDE_DIRECTORIES
命令传递头文件的位置,TARGET_LINK_LIBRARIES
将链接器信息传递给makefile,make
应该可以顺利运行。编辑:要安装最新版本的boost,您可以尝试this:
型
或者对于特定版本的boost,例如1.82.0:
型
(我不确定最后一个数字坚韧多少)