2010-03-05 9 views
5

estoy usando autoconf para detectar bibliotecas Boost, con el apoyo de la autoconf-archive macros y funcionan bien con las bibliotecas de impulso en todo el sistema, pero fallar si puedo compilar manualmente impulso en mi directorio home:¿Por qué autoconf no detecta el impulso correctamente?

[email protected]:~/devel/spectra2$ ./configure --with-boost=/home/sb/local/ 
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... no 
checking for mawk... mawk 
checking whether make sets $(MAKE)... yes 
checking build system type... i686-pc-linux-gnu 
checking host system type... i686-pc-linux-gnu 
checking for style of include used by make... GNU 
checking for gcc... gcc 
checking for C compiler default output file name... a.out 
checking whether the C compiler works... yes 
checking whether we are cross compiling... no 
checking for suffix of executables... 
checking for suffix of object files... o 
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 dependency style of gcc... gcc3 
checking for library containing strerror... none required 
checking for g++... g++ 
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.31.0... yes 
checking whether the Boost::Program_Options library is available... yes 
checking for exit in -lboost_program_options... yes 
checking whether the Boost::Filesystem library is available... yes 
checking for exit in -lboost_filesystem... no 
checking for exit in -lboost_filesystem... (cached) no 
checking for exit in -lboost_filesystem... (cached) no 
configure: error: Could not link against boost_filesystem ! 

Como se puede ver, detecta algunas bibliotecas bien, pero falla con boost-filesystem. Estos son los contenidos de ~/local/lib:

[email protected]:~$ ls -1 /home/sb/local/lib/ 
libboost_filesystem.a 
libboost_filesystem.so 
libboost_filesystem.so.1.42.0 
libboost_program_options.a 
libboost_program_options.so 
libboost_program_options.so.1.42.0 
libboost_system.a 
libboost_system.so 
libboost_system.so.1.42.0 
libboost_thread.a 
libboost_thread.so 
libboost_thread.so.1.42.0 

La biblioteca está allí. Intenté con boost-1.39 y boost-1.42 sin ningún resultado diferente, ¿alguna idea de por qué sucede esto? ¿Me olvidé de algo?

Respuesta

3

Dado que boost-1.39 libboost_filesystem depende de libboost_system. Antes de 1.39 solo podías enlazar a boost_filesystem, en versiones posteriores tienes que vincular a ambos.

Quizás tenga algo que ver con su error.

+0

Supongo que es correcto: boost-system está instalado y hay una comprobación de ello en el archivo configure.ac, pero fue después de la verificación de boost-filesystem. Si cambio el pedido, todo funciona según lo previsto. Este es también un pequeño problema de documentación en autoconf-archive – Kjir

+1

@Dmitry Yudakov Proporcione un enlace/referencia para su extracto. – Qsiris

1

He encontrado que boost.m4 es mucho más robusto que las macros de Boost disponibles en Autoconf Macro Archive. Puede tener buena suerte simplemente migrando a boost.m4.

Cuestiones relacionadas