c8054ae5e8
And let the final binaries get it from that. Fixes building with -Wl,--as-needed Signed-off-by: Diego "Flameeyes" Pettenò <flameeyes@gmail.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
72 lines
2.2 KiB
CMake
72 lines
2.2 KiB
CMake
project(pahole)
|
|
|
|
# Try to parse this later, Helio just showed me a KDE4 example to support
|
|
# x86-64 builds.
|
|
# the following are directories where stuff will be installed to
|
|
set(__LIB "" CACHE STRING "Define suffix of directory name (32/64)" )
|
|
|
|
macro(_set_fancy _var _value _comment)
|
|
if (NOT DEFINED ${_var})
|
|
set(${_var} ${_value})
|
|
else (NOT DEFINED ${_var})
|
|
set(${_var} "${${_var}}" CACHE PATH "${_comment}")
|
|
endif (NOT DEFINED ${_var})
|
|
endmacro(_set_fancy)
|
|
|
|
# where to look first for cmake modules,
|
|
# before ${CMAKE_ROOT}/Modules/ is checked
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
|
|
|
|
set(CMAKE_BUILD_TYPE debug)
|
|
|
|
find_package(DWARF REQUIRED)
|
|
|
|
_set_fancy(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/usr/${__LIB}" "libdir")
|
|
|
|
set(dwarves_LIB_SRCS dwarves.c)
|
|
add_library(dwarves SHARED ${dwarves_LIB_SRCS})
|
|
set_target_properties(dwarves PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
target_link_libraries(dwarves ${DWARF_LIBRARIES})
|
|
|
|
set(codiff_SRCS codiff.c)
|
|
add_executable(codiff ${codiff_SRCS})
|
|
target_link_libraries(codiff dwarves)
|
|
|
|
set(ctracer_SRCS ctracer.c)
|
|
add_executable(ctracer ${ctracer_SRCS})
|
|
target_link_libraries(ctracer dwarves)
|
|
|
|
set(dtagnames_SRCS dtagnames.c)
|
|
add_executable(dtagnames ${dtagnames_SRCS})
|
|
target_link_libraries(dtagnames dwarves)
|
|
|
|
set(pahole_SRCS pahole.c)
|
|
add_executable(pahole ${pahole_SRCS})
|
|
target_link_libraries(pahole dwarves)
|
|
|
|
set(pdwtags_SRCS pdwtags.c)
|
|
add_executable(pdwtags ${pdwtags_SRCS})
|
|
target_link_libraries(pdwtags dwarves)
|
|
|
|
set(pglobal_SRCS pglobal.c)
|
|
add_executable(pglobal ${pglobal_SRCS})
|
|
target_link_libraries(pglobal dwarves)
|
|
|
|
set(pfunct_SRCS pfunct.c )
|
|
add_executable(pfunct ${pfunct_SRCS})
|
|
target_link_libraries(pfunct dwarves)
|
|
|
|
set(prefcnt_SRCS prefcnt.c)
|
|
add_executable(prefcnt ${prefcnt_SRCS})
|
|
target_link_libraries(prefcnt dwarves)
|
|
|
|
install(TARGETS codiff ctracer dtagnames pahole pdwtags
|
|
pfunct pglobal prefcnt RUNTIME DESTINATION /usr/bin)
|
|
install(TARGETS dwarves LIBRARY DESTINATION ${LIB_INSTALL_DIR})
|
|
install(FILES dwarves.h DESTINATION /usr/include)
|
|
install(FILES ostra/ostra-cg DESTINATION /usr/bin)
|
|
install(FILES ostra/python/ostra.py DESTINATION ${LIB_INSTALL_DIR}/ctracer/python)
|
|
install(FILES lib/Makefile lib/ctracer_jprobe.c
|
|
lib/ctracer_relay.c lib/ctracer_relay.h
|
|
DESTINATION ${LIB_INSTALL_DIR}/ctracer)
|