简体   繁体   中英

configure: error: Could not find a version of the library

I am building this DNP3 program and when I follow the build instructions./configure does not make a make file. When I run it I get the following output:

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for boostlib >= 1.43... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking whether the Boost::Date_Time library is available... yes
configure: error: Could not find a version of the library!

I think the last line may be causing the problem, but I have no idea what "the library" is. I installed boost with "sudo apt-get install libboost-all-dev" so I don't think that's it, but I have no idea.

The other answer almost worked for me. Try this, which is more likely if you're on a 64-bit machine:

./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu/

(worked on Ubuntu 14.04)

I solved by adding the library path with "--with-boost-libdir" to "configure". The path depends on the CPU architecture. For raspberry pi 3, for example, the command is:

./configure --with-boost-libdir=/usr/lib/arm-linux-gnueabihf/

None of the presented directories by the other answers didn't work for me even though I had this /usr/lib/x86_64-linux-gnu/ directory with its files inside.

So I managed to fix it by installing all the relevant dependencies: sudo apt-get install libboost-all-dev

I've been sticking with the error while trying to config bitcoin core BTW.

我能够使用./configure命令的以下更改来解决它:

./configure --with-boost-libdir=/usr/lib/i386-linux-gnu/

对于 openSUSE Tumbleweed,您应该安装 libboost-x1_77_0-devel 软件包及其依赖项,其中 x 是:系统、文件系统、测试和任何其他所需的(您将看到错误消息还需要什么)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM