2017-01-20 62 views
1

我的問題:在這一刻,我dinamically鏈接libre2,但我想靜態做到這一點。我在我的電腦中安裝了庫(sudo apt-get install libre2-dev),得到了「二進制」,並將這個二進制文件「libre2.so」鏈接到我的可執行文件中。但我想要克隆存儲庫或通過git子模塊來完成此操作,然後構建此存儲庫並將其靜態鏈接到我的項目中。如何在我的項目就像一個靜態庫cmake的鏈接RE2庫

我在這裏新的,對不起我的英語不好RSS'

1)我的項目結構

- bin 
- build 
- external 
    - re2 
- main.cpp 
- CMakeLists.txt 
- README.md 

2)的CMakeLists.txt

cmake_minimum_required(VERSION 2.6) 

project(simmc-agent) 

# version number 
set (VERSION_MAJOR 0) 
set (VERSION_MINOR 0) 

# cpr requires c++11 
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 

# src : main 
file (GLOB SOURCES *.cpp) 

# linking res library dinamically 
set(RE2_LIBRARIES -L${RE2_LIBRARY_DIR} -l libre2.so) 

# src : collect functions - depend on OS 
if (WIN32) 
    file (GLOB SOURCES ${SOURCES} src/windows/*.cpp) 
else()  # if(UNIX) 
    file (GLOB SOURCES ${SOURCES} src/linux/*.cpp) 
endif() 

# headers 
include_directories ("include") 

# test 
option(PRINT_JSON "Set to ON to print json objects before sending" OFF) 
message(STATUS "${PRINT_JSON}: ${${PRINT_JSON}}") 
if (PRINT_JSON) 
    add_definitions (-DPRINT_JSON) 
endif() 

# compile 
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "../bin") 
add_executable (agent-v${VERSION_MAJOR}.${VERSION_MINOR} ${SOURCES}) 
target_link_libraries (agent-v${VERSION_MAJOR}.${VERSION_MINOR} ${RE2_LIBRARY}) 

3)的main.cpp

#include <iostream>  
#include <re2/re2.h> 

using namespace std; 
using namespace re2; 

int main (int argc, char **argv) { 
    cout << "hello world" << endl; 

int matchResult; 

matchResult = RE2::FullMatch("hello", "h.*o"); 
cout << "matchResult = " << matchResult << endl; 

    return 0; 

} 
+0

要下載和構建RE2您可以用'ExternalProject_Add()'。您可以通過查看這兩個文件來查看您的案例:[https://github.com/project-z/mutton/blob/master/ext/re2.cmake](https://github.com/project -z /羊肉/斑點/主/ EXT/re2.cmake)和[https://github.com/petewarden/tensorflow_makefile/blob/master/tensorflow/contrib/cmake/external/re2.cmake](https:// github.com/petewarden/tensorflow_makefile/blob/master/tensorflow/contrib/cmake/external/re2.cmake),它們也使用靜態庫。 – fedepad

+0

感謝您的幫助。當我回家時我會嘗試。之後,我會提供反饋。 –

+0

哎...我測試了它,我有一些問題: 「這是不可能滿足-lexternal/RE2/src目錄/ RE2/OBJ/SO/libre2.so」 –

回答

0

編輯 - (26.01.17):大家好。我在這裏談論我如何解決它。 以下一些技巧給了這裏,我創建了一個名爲re2.cmake文件:

cmake_minimum_required (VERSION 2.8.7) 

if (NOT RE2_NAME) 

include (ExternalProject) 

SET (RE2_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/re2/src/re2/) 
SET (RE2_EXTRA_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/re2/src/re2/) 
SET (RE2_URL https://github.com/google/re2.git) 
SET (RE2_BUILD ${CMAKE_BINARY_DIR}/re2/src/re2) 
SET (RE2_LIBRARIES ${RE2_BUILD}/obj/so/libre2.so) 
get_filename_component(RE2_STATIC_LIBRARIES ${RE2_BUILD}/libre2.a ABSOLUTE) 
SET (RE2_INCLUDES ${RE2_BUILD}) 

if (WIN32) 
    SET (RE2_STATIC_LIBRARIES ${RE2_BUILD}/${CMAKE_BUILD_TYPE}/re2.lib) 
else() 
    SET (RE2_STATIC_LIBRARIES ${RE2_BUILD}/libre2.a) 
endif() 

ExternalProject_Add(RE2  
    PREFIX RE2  
    GIT_REPOSITORY ${RE2_URL}  
    # GIT_TAG ${RE2_TAG}  
    DOWNLOAD_DIR "${DOWNLOAD_LOCATION}"  
    BUILD_IN_SOURCE 1  
    INSTALL_COMMAND sudo make install  
    CMAKE_CACHE_ARGS   
    -DCMAKE_BUILD_TYPE:STRING=Release   -DCMAKE_VERBOSE_MAKEFILE:BOOL=OFF   -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON 
) 

## put re2 includes in the directory where they are expected 
add_custom_target(re2_create_destination_dir COMMAND ${CMAKE_COMMAND} -E make_directory ${RE2_INCLUDE_DIR}/re2 DEPENDS re2) 

add_custom_target(re2_copy_headers_to_destination DEPENDS re2_create_destination_dir) 

foreach(header_file ${RE2_HEADERS})  
    add_custom_command(TARGET re2_copy_headers_to_destination PRE_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${header_file} ${RE2_INCLUDE_DIR}/re2) 
    endforeach() 

    ADD_LIBRARY(RE2_LIB STATIC IMPORTED DEPENDS RE2) 
    SET_TARGET_PROPERTIES(RE2_LIB PROPERTIES IMPORTED_LOCATION ${RE2_STATIC_LIBRARIES}) 

endif (NOT RE2_NAME) 

該文件下載資源庫,建設,在我的電腦安裝的庫libre2。這個庫對Thread庫*有依賴性(我認爲所有的linux操作系統都附帶這個庫)。

但是,有一個問題:我只能這樣做,如果我是一個root用戶。由於該庫使用「make install」命令並執行該操作,因此您需要成爲root用戶。

我的項目結構:

- bin 
- build 
- src 
- include 
- modules 
    - re2.cmake 
- CMakeLists.txt 

關注我的CMakeLists.txt:

cmake_minimum_required (VERSION 2.8.7) 

project (project C CXX) 

# version number 
SET (VERSION_MAJOR 0) 
SET (VERSION_MINOR 0) 

SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 

# src : main 
file (GLOB SOURCES src/main.cpp) 

# headers 
include_directories ("include") 

# src : libre2 - Download, build and install the library 

find_package (Threads) 

include ("modules/re2.cmake") 
set(RE2_STATIC_LIBRARIES -L${RE2_LIBRARY_DIR} -l libre2.a) 

# compile 
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "../bin") 
add_executable (project-v${VERSION_MAJOR}.${VERSION_MINOR} ${SOURCES}) 
target_link_libraries (project-v${VERSION_MAJOR}.${VERSION_MINOR} ${RE2_STATIC_LIBRARIES}) 

add_dependencies(project-v${VERSION_MAJOR}.${VERSION_MINOR} RE2) 

target_link_libraries (project-v${VERSION_MAJOR}.${VERSION_MINOR} ${CMAKE_THREAD_LIBS_INIT}) 
0

我的新CmakeLists.txt

cmake_minimum_required(VERSION 2.8.7) 

project(simmc-agent) 

# version number 
set (VERSION_MAJOR 0) 
set (VERSION_MINOR 0) 

# cpr requires c++11 
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 

# src : main 
file (GLOB SOURCES *.cpp) 

# libre2 

if (NOT RE2_NAME) 

    include (ExternalProject) 

    set(ABBREV "RE2") 
    set(EXT_PREFIX "external/re2") 
    set(${ABBREV}_NAME   ${ABBREV}) 
    set(${ABBREV}_INCLUDE_DIRS ${EXT_PREFIX}/src/re2/) 
    set(APP_DEPENDENCIES ${APP_DEPENDENCIES} ${ABBREV}) 

    message("Installing ${RE2_NAME} into ext build area: ${EXT_PREFIX} ...") 

    ExternalProject_Add(RE2 
     PREFIX ${EXT_PREFIX} 
     URL https://re2.googlecode.com/files/re2-20130115.tgz 
     URL_MD5 "ef66646926e6cb8f11f277b286eac579" 
     PATCH_COMMAND "" 
     CONFIGURE_COMMAND "" 
     BUILD_COMMAND make 
     INSTALL_COMMAND "" 
     BUILD_IN_SOURCE 1 
    ) 

    set(CXXFLAGS CMAKE_CXX_FLAGS) 

    set(${ABBREV}_LIBRARIES ${EXT_PREFIX}/src/RE2/obj/so/libre2.so) 
    set(${ABBREV}_STATIC_LIBRARIES ${EXT_PREFIX}/src/RE2/obj/libre2.a) 

    set_target_properties(${RE2_NAME} PROPERTIES EXCLUDE_FROM_ALL ON) 

    endif (NOT RE2_NAME) 


if(RE2_INCLUDE_DIRS AND RE2_LIBRARIES) 
    set(RE2_FOUND TRUE) 
endif(RE2_INCLUDE_DIRS AND RE2_LIBRARIES) 

if(RE2_FOUND) 
    message(STATUS "Found RE2: ${RE2_LIBRARIES}") 
else(RE2_FOUND) 
    message(FATAL_ERROR "Could not find RE2 library.") 
endif(RE2_FOUND) 

set(INCLUDES ${INCLUDES} ${RE2_INCLUDE_DIRS}) 
# set(LIBS ${LIBS} ${RE2_STATIC_LIBRARIES}) 

# headers 
include_directories ("include") 

# test 
option(PRINT_JSON "Set to ON to print json objects before sending" OFF) 
message(STATUS "${PRINT_JSON}: ${${PRINT_JSON}}") 
if (PRINT_JSON) 
    add_definitions (-DPRINT_JSON) 
endif() 

# compile 
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "../bin") 
add_executable (agent-v${VERSION_MAJOR}.${VERSION_MINOR} ${SOURCES}) 
target_link_libraries (agent-v${VERSION_MAJOR}.${VERSION_MINOR} ${RE2_LIBRARIES}) 
+0

請更換''target_link_libraries具有以下(代理-V $ {VERSION_MAJOR} $ {VERSION_MINOR} $ {} RE2_LIBRARIES):'target_link_libraries(試劑 - v $ {VERSION_MAJOR}。$ {VERSION_MINOR} $ {RE2_STATIC_LIBRARIES})'。這應該鏈接靜態的!如果它有效,我會寫在答案。 – fedepad

+0

我做到了,繼續不工作:/相同的錯誤:/ usr/bin/ld:不可能符合-lexternal/re2/src/re2/obj/libre2.a –

相關問題