forked from dyninst/dyninst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
219 lines (204 loc) · 7.42 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
cmake_minimum_required (VERSION 2.6.4)
project (Dyninst)
set (DYNINST_ROOT ${PROJECT_SOURCE_DIR})
set (CMAKE_SKIP_BUILD_RPATH FALSE)
set (CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES
"${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
IF("${isSystemDir}" STREQUAL "-1")
set (CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
ENDIF()
set(RT_SOURCE_DIR ${DYNINST_ROOT}/dyninstAPI_RT)
set(RT_BINARY_DIR ${PROJECT_BINARY_DIR}/dyninstAPI_RT)
include (${DYNINST_ROOT}/cmake/shared.cmake)
configure_file(cmake/version.h.in common/h/version.h)
include_directories(${PROJECT_BINARY_DIR})
include_directories(${PROJECT_BINARY_DIR}/common/h)
set (HEADER_DIRS common
dataflowAPI
dyninstAPI
instructionAPI
parseAPI
patchAPI
proccontrol
stackwalk
symtabAPI
)
if(NOT ${PLATFORM} MATCHES nt)
set (HEADER_DIRS ${HEADER_DIRS}
dwarf
elf
symlite
)
endif()
foreach (dir ${HEADER_DIRS})
include_directories ( ${DYNINST_ROOT}/${dir}/h )
endforeach()
include_directories (
${DYNINST_ROOT}
${DYNINST_ROOT}/external
)
set(Boost_USE_STATIC_LIBS OFF)
# Component time
add_subdirectory (common)
if(NOT ${PLATFORM} MATCHES nt)
add_subdirectory (elf)
add_subdirectory (dwarf)
add_subdirectory (symlite)
add_subdirectory (parseThat)
endif()
add_subdirectory (instructionAPI)
add_subdirectory (symtabAPI)
add_subdirectory (parseAPI)
add_subdirectory (proccontrol)
add_subdirectory (stackwalk)
add_subdirectory (patchAPI)
if(${SYMREADER} MATCHES symtabAPI)
add_subdirectory (dyninstAPI)
add_subdirectory (dynC_API)
endif()
if(BUILD_RTLIB)
# Build the RT library as a separate project so we can change compilers
message(STATUS "Configuring DyninstAPI_RT")
file(REMOVE_RECURSE ${RT_BINARY_DIR}/CMakeCache.txt ${RT_BINARY_DIR}/CMakeFiles ${RT_BINARY_DIR}/Makefile)
file(MAKE_DIRECTORY ${RT_BINARY_DIR})
if (PLATFORM MATCHES bgq)
set (RT_C_COMPILER mpicc CACHE STRING "Compiler for runtime library")
else()
set (RT_C_COMPILER ${CMAKE_C_COMPILER} CACHE STRING "Compiler for runtime library")
endif()
set (ENABLE_STATIC_LIBS NO CACHE STRING "Build static libraries as well?")
message(STATUS "Configuring RT library")
execute_process(WORKING_DIRECTORY ${RT_BINARY_DIR}
COMMAND ${CMAKE_COMMAND}
-DCMAKE_C_COMPILER=${RT_C_COMPILER}
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}
-DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}
-DINSTALL_LIB_DIR=${INSTALL_LIB_DIR}
-DINSTALL_INCLUDE_DIR=${INSTALL_INCLUDE_DIR}
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
-DBUILD_RTLIB_32=${BUILD_RTLIB_32}
-DPLATFORM=${PLATFORM}
-G ${CMAKE_GENERATOR}
${RT_SOURCE_DIR})
if(MSVC)
include_external_msproject(DyninstAPI_RT dyninstAPI_RT/dyninstAPI_RT.vcxproj)
include_external_msproject(DyninstAPI_RT_static dyninstAPI_RT/dyninstAPI_RT_static.vcxproj)
else()
add_custom_target(DyninstRT
ALL
$(MAKE)
WORKING_DIRECTORY ${RT_BINARY_DIR}
COMMENT "Building DyninstRT")
add_dependencies(dyninstAPI DyninstRT)
if(TARGET dyninstAPI-static)
add_dependencies(dyninstAPI-static DyninstRT)
endif()
endif()
install(SCRIPT "${RT_BINARY_DIR}/cmake_install.cmake")
else()
message(STATUS "Skipping DyninstAPI_RT. Be sure to build this library if you're using instrumentation.")
endif()
set (VERSION_STRING "${DYNINST_MAJOR_VERSION}.${DYNINST_MINOR_VERSION}.${DYNINST_PATCH_VERSION}")
set (DYNINST_NAME "DyninstAPI-${VERSION_STRING}")
if(BUILD_TARBALLS)
find_package(Git)
if(GIT_FOUND)
if(EXISTS "${DYNINST_ROOT}/.git/")
message(STATUS "Source tree is repository, building archive target")
add_custom_target(package ALL)
add_custom_command(TARGET package
COMMAND ${GIT_EXECUTABLE} archive --prefix="${DYNINST_NAME}/" --format=tar.gz -o "${CMAKE_BINARY_DIR}/${DYNINST_NAME}.tgz" HEAD
WORKING_DIRECTORY ${DYNINST_ROOT}
COMMENT "Packaging Dyninst")
endif()
endif()
endif()
if(BUILD_DOCS)
add_custom_target(doc)
set(LATEX_DOCS dynC_API dataflowAPI instructionAPI parseAPI patchAPI symtabAPI stackwalk)
set(WORD_DOCS proccontrol dyninstAPI)
add_custom_target(proccontrol-doc
DEPENDS ${CMAKE_SOURCE_DIR}/proccontrol/doc/proccontrol.pdf)
add_custom_target(dyninstAPI-doc
DEPENDS ${CMAKE_SOURCE_DIR}/dyninstAPI/doc/dyninstAPI.pdf)
foreach(COMPONENT ${WORD_DOCS})
add_dependencies(doc ${COMPONENT}-doc)
set_target_properties(${COMPONENT}-doc PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD 1)
install(FILES ${CMAKE_SOURCE_DIR}/${COMPONENT}/doc/${COMPONENT}.pdf
DESTINATION ${INSTALL_DOC_DIR}
RENAME ${COMPONENT}-${VERSION_STRING}.pdf
OPTIONAL
)
endforeach()
find_package(LATEX)
if(PDFLATEX_COMPILER)
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/common/doc
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/common)
foreach(COMPONENT ${LATEX_DOCS})
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/${COMPONENT}/doc
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT})
set (DEPS "")
file(GLOB_RECURSE DEPS ${CMAKE_CURRENT_SOURCE_DIR}/${COMPONENT}/doc/*.tex ${CMAKE_CURRENT_SOURCE_DIR}/common/doc/*.tex)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc/${COMPONENT}.aux
DEPENDS ${DEPS}
COMMAND ${PDFLATEX_COMPILER}
ARGS -interaction=batchmode ${COMPONENT}.tex
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc
COMMENT "Latex (first pass)"
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc/${COMPONENT}.log
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc/${COMPONENT}.aux
COMMAND ${PDFLATEX_COMPILER}
ARGS -interaction=batchmode ${COMPONENT}.tex
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc
COMMENT "Latex (second pass)"
)
add_custom_target(${COMPONENT}-doc echo
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc/${COMPONENT}.log
)
add_dependencies(doc ${COMPONENT}-doc)
set_target_properties(${COMPONENT}-doc PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD 1)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${COMPONENT}/doc/${COMPONENT}.pdf
DESTINATION ${INSTALL_DOC_DIR}
RENAME ${COMPONENT}-${VERSION_STRING}.pdf
OPTIONAL
)
endforeach()
else()
message(STATUS "LaTeX not found")
endif()
endif()
if(UNIX)
message(STATUS "Adding Unix-specific dependencies")
add_dependencies(dynDwarf libdwarf_imp)
add_dependencies(dynElf libelf_imp)
message(STATUS "Added libdwarf_imp and libelf_imp dependencies")
if (NOT USE_GNU_DEMANGLER)
add_dependencies(common libiberty_imp)
endif()
if(NOT LIBDWARF_FOUND)
message(STATUS "Building libdwarf, creating libdwarf dependency on libelf")
add_dependencies(libdwarf_imp libelf_imp)
endif()
if(SHOULD_INSTALL_LIBELF)
get_filename_component(ELFDIR "${LIBELF_LIBRARIES}" PATH)
file(GLOB LIBELF_INSTALL_FILES ${ELFDIR}/libelf.so*)
message(STATUS "Libelf is ${LIBELF_LIBRARIES}")
message(STATUS "Installing ${LIBELF_INSTALL_FILES} from ${ELFDIR}")
install (FILES ${LIBELF_INSTALL_FILES}
DESTINATION "${INSTALL_LIB_DIR}")
endif()
if(NOT LIBDWARF_FOUND)
message(STATUS "Installing ${LIBDWARF_LIBRARIES}")
install (FILES ${LIBDWARF_LIBRARIES}
DESTINATION "${INSTALL_LIB_DIR}")
endif()
endif()
if(TARGET boost)
add_dependencies(common boost)
endif()