我的代码当前正在使用boost文件系统库。可以用命令编译
g++ program.cc -o program -std=c++11 -I /tools/boost/1.64/3/linux64/rel/include/ -L/tools/boost/1.64/3/linux64/rel/lib -lboost_filesystem -lboost_system
但是,它在链接阶段失败,并显示类似于
的错误/tools/boost/1.64/3/linux64/rel/lib/libboost_filesystem.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_first_not_of(char const*, unsigned long, unsigned long) const@GLIBCXX_3.4.21'
关于为什么发生这种情况的任何建议吗?