2017-04-04 143 views
0

我有一個鏈接問題,當我試圖從boost使用文件系統。我複製代碼教程:鏈接錯誤使用boost庫和clion

#include <iostream> 
#include <boost/filesystem.hpp> 
using namespace boost::filesystem; 

int main(int argc, char* argv[]) 
{ 
    if (argc < 2) 
    { 
     std::cout << "Usage: tut1 path\n"; 
     return 1; 
    } 
    std::cout << argv[1] << " " << file_size(argv[1]) << '\n'; 
    return 0; 
} 

或許它應該工作,但我有這樣的錯誤:

Scanning dependencies of target untitled 
[ 50%] Building CXX object CMakeFiles/untitled.dir/main.cpp.o 
[100%] Linking CXX executable untitled 
Undefined symbols for architecture x86_64: 
    "boost::filesystem::detail::file_size(boost::filesystem::path const&, boost::system::error_code*)", referenced from: 
     boost::filesystem::file_size(boost::filesystem::path const&) in main.cpp.o 
    "boost::system::system_category()", referenced from: 
     ___cxx_global_var_init.2 in main.cpp.o 
    "boost::system::generic_category()", referenced from: 
     ___cxx_global_var_init in main.cpp.o 
     ___cxx_global_var_init.1 in main.cpp.o 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
make[3]: *** [untitled] Error 1 
make[2]: *** [CMakeFiles/untitled.dir/all] Error 2 
make[1]: *** [CMakeFiles/untitled.dir/rule] Error 2 
make: *** [untitled] Error 2 

我的CMakeLists.txt文件:

cmake_minimum_required(VERSION 3.7) 
project(untitled) 

set(CMAKE_CXX_STANDARD 11) 

set(SOURCE_FILES main.cpp) 
add_executable(untitled ${SOURCE_FILES}) 

find_package(Boost) 
IF (Boost_FOUND) 
    include_directories(${Boost_INCLUDE_DIR}) 
endif() 

我能提高什麼編譯這個代碼?我在OSX上使用CLion編輯器。

+0

請向我們展示您的make make/makefile/CMakeLists.txt! – Rama

+0

'cmake_minimum_required(3.7版) 項目(無) 集(CMAKE_CXX_STANDARD 11) 集(SOURCE_FILES main.cpp中) add_executable(無$ {} SOURCE_FILES) find_package(升壓) IF(Boost_FOUND) include_directories ($ {Boost_INCLUDE_DIR}) endif()' 對不起,這種粘貼格式 - 我不知道如何使它成爲多行。 – emil

+0

@emil你將要把它附加到你的問題,而不是留在評論中。 – chbchb55

回答

0

更改這一行你CMakeList.txt:

find_package(Boost) 

通過

find_package(Boost COMPONENTS system filesystem REQUIRED) 

,不要忘記你的目標鏈接:

target_link_libraries(untitled 
    ${Boost_FILESYSTEM_LIBRARY} 
    ${Boost_SYSTEM_LIBRARY} 
) 

所以你CMakeList。 txt將是:

cmake_minimum_required(VERSION 3.7) 
project(untitled) 

set(CMAKE_CXX_STANDARD 11) 

set(SOURCE_FILES main.cpp) 
add_executable(untitled ${SOURCE_FILES}) 

find_package(Boost COMPONENTS system filesystem REQUIRED) 
IF (Boost_FOUND) 
    include_directories(${Boost_INCLUDE_DIR}) 
    target_link_libraries(untitled 
     ${Boost_FILESYSTEM_LIBRARY} 
     ${Boost_SYSTEM_LIBRARY} 
     ) 
endif()