- 论坛徽章:
- 1
|
我简单写了个调用boost_program_option解析命令行参数的c++程序。我把编译选项放makefile.am中,可以编译并正常使用
option_main_SOURCES=./option_main.cpp
option_main_CXXFLAGS=-I../boost -ggdb -Wall -O0
option_main_LDADD=-lboost_program_options
option_main_LDFLAGS=-L../boost/stage/lib
但我直接使用g++编译,为啥不行呢?编译命令为:
g++ -I../boost -ggdb -Wall -O0 -L../boost/stage/lib -lboost_program_options -o option_main option_main.cpp
报一大堆错误:
/tmp/ccYy1zuQ.o: In function `main':
/home/sequoiadb/emeralddb/src/option_main.cpp:10: undefined reference to `boost::program_options: ptions_description::m_default_line_length'
/home/sequoiadb/emeralddb/src/option_main.cpp:10: undefined reference to `boost::program_options: ptions_description::m_default_line_length'
/home/sequoiadb/emeralddb/src/option_main.cpp:10: undefined reference to `boost::program_options: ptions_description: ptions_description(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int, unsigned int)'
/home/sequoiadb/emeralddb/src/option_main.cpp:17: undefined reference to `boost::program_options: ptions_description::add_options()'
/home/sequoiadb/emeralddb/src/option_main.cpp:17: undefined reference to `boost::program_options: ptions_description_easy_init: perator()(char const*, boost::program_options::value_semantic const*, char const*)'
/home/sequoiadb/emeralddb/src/option_main.cpp:18: undefined reference to `boost::program_options: ptions_description_easy_init: perator()(char const*, boost::program_options::value_semantic const*, char const*)'
/home/sequoiadb/emeralddb/src/option_main.cpp:20: undefined reference to `boost::program_options: ptions_description_easy_init::operator()(char const*, char const*)'
/home/sequoiadb/emeralddb/src/option_main.cpp:23: undefined reference to `boost::program_options::variables_map::variables_map()'
/home/sequoiadb/emeralddb/src/option_main.cpp:26: undefined reference to `boost::program_options::store(boost::program_options::basic_parsed_options<char> const&, boost::program_options::variables_map&, bool)'
/home/sequoiadb/emeralddb/src/option_main.cpp:27: undefined reference to `boost::program_options::notify(boost::program_options::variables_map& '
|
|