Я использую CMake (2.8.3), Boost :: filesystem (1.42.0) в Ubuntu 10.10. Код компилируется нормально, но я продолжаю получать следующую ошибку при линковке:
CMakeFiles/sample.dir/sample.cpp.o: In function `main':
sample.cpp:(.text+0x1af8d): undefined reference to `int operator!=<boost::filesystem::basic_directory_iterator<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> > >(boost::filesystem::basic_directory_iterator<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> > const&, boost::filesystem::basic_directory_iterator<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> > const&)'
collect2: ld returned 1 exit status
Код, о котором идет речь, следующий:
#include <boost/filesystem.hpp>
#include <boost/algorithm/string.hpp>
int main()
{
string folder;
string extension;
fs::directory_iterator end;
folder = ".";
extension = ".zip";
for (fs::directory_iterator i(folder); i != end; ++i)
{ if (fs::is_regular_file(i->status()))
{
if (boost::algorithm::ends_with(i->leaf(), extension))
{
cout << i->leaf() << " has extension .zip" << endl;
}
}
}
}
в моем CMakeLists.txt
файле, у меня есть:
find_package(Boost 1.4.0 COMPONENTS filesystem REQUIRED)
include_directories(${Boost_INCLUDE_DIRS})
target_link_libraries(executable
${Boost_LIBRARIES})
но я также пытался с:
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_STATIC_RUNTIME OFF)
find_package(Boost 1.4.0 COMPONENTS filesystem REQUIRED)
include_directories(${Boost_INCLUDE_DIRS})
target_link_libraries(executable
${Boost_FILESYSTEM_LIBRARY})
и многие другие комбинации вышеперечисленного.
Компоновщик жалуется на оператор !=
для типа directory_iterator
. Если я посмотрю содержимое заголовка в /usr/include/boost/filesystem/path.cpp
, то увижу, что там определен оператор Есть идеи, почему это происходит?
Я бы очень признателен за вашу помощь.