Estoy tratando de incluir Boost
bibliotecas en mi proyecto y he tenido problemas en el mismo. Estoy en Ubuntu 12.10 con Codeblocks IDE e intenté instalar las bibliotecas manualmente leyendo las instrucciones del sitio, pero recibía errores con el encabezado y las bibliotecas que se deben construir antes de usar.
Luego instalé las bibliotecas a través de terminalby sudo apt-get install libboost-all-dev
. Después de esto, en mis programas en Codeblocks, puedo incluir encabezados como, #include <boost/regex.hpp>
pero cuando trato de incluir el encabezado para la biblioteca del sistema de archivos ( #include "boost/filesystem/operations.hpp"
), aparece el siguiente error:
/usr/include/boost/system/error_code.hpp|214|undefined reference to boost::system::generic_category()'|
No estoy seguro de cómo resolver este error (específicamente en Codeblocks en Linux). Realmente me vendría bien un poco de ayuda aquí.
Compilador: Gcc
Código de programa: Solo se intentó incluir el archivo del sistema de operations.hpp
archivos anterior.
Crear registro a partir de Codeblocks:
Build started on: 20-11-2012 at 18:02.53
Build ended on: 20-11-2012 at 18:02.54
-------------- Build: Debug in libopenFrameworks ---------------
Target is up to date.
-------------- Build: Debug in reader1 ---------------
make -s -f Makefile Debug
linking i686 bin/reader1_debug linux
obj/i686Debug/src/testApp.o: In function `__static_initialization_and_destruction_0':
/usr/include/boost/system/error_code.hpp:214: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:215: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:216: undefined reference to `boost::system::system_category()'
obj/i686Debug/src/main.o: In function `__static_initialization_and_destruction_0':
/usr/include/boost/system/error_code.hpp:214: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:215: undefined reference to `boost::system::generic_category()'
/usr/include/boost/system/error_code.hpp:216: undefined reference to `boost::system::system_category()'
collect2: ld returned 1 exit status
make: *** [bin/reader1_debug] Error 1
Process terminated with status 2 (0 minutes, 1 seconds)
6 errors, 0 warnings