1 # CMakeLists.txt -- libbacktrace CMake build script
2 # Contributed by Alexander Monakov, ISP RAS
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
8 # (1) Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
11 # (2) Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in
13 # the documentation and/or other materials provided with the
16 # (3) The name of the author may not be used to
17 # endorse or promote products derived from this software without
18 # specific prior written permission.
20 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 # DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 # POSSIBILITY OF SUCH DAMAGE. */
32 cmake_minimum_required (VERSION 2.8)
34 project (libbacktrace)
36 set (BACKTRACE_SUPPORTED 1)
38 include (CheckSymbolExists)
39 check_symbol_exists (_Unwind_Backtrace unwind.h HAVE_BACKTRACE)
40 check_symbol_exists (_Unwind_GetIPInfo unwind.h HAVE_GETIPINFO)
43 set (BACKTRACE_FILE backtrace.c simple.c)
45 set (BACKTRACE_FILE nounwind.c)
46 set (BACKTRACE_SUPPORTED 0)
49 include (CheckCCompilerFlag)
50 check_c_compiler_flag ("-funwind-tables" FLAG_UNWIND_TABLES)
51 if (FLAG_UNWIND_TABLES)
52 add_definitions ("-funwind-tables")
56 if (CMAKE_COMPILER_IS_GNUCC)
57 add_definitions ("-Wno-switch -Wno-enum-compare")
60 check_c_source_compiles (
63 __sync_bool_compare_and_swap (&i, i, i);
64 __sync_lock_test_and_set (&i, 1);
65 __sync_lock_release (&i);}"
68 if (HAVE_SYNC_FUNCTIONS)
69 set (BACKTRACE_SUPPORTS_THREADS 1)
71 set (BACKTRACE_SUPPORTS_THREADS 0)
74 if (CMAKE_EXECUTABLE_FORMAT STREQUAL "ELF")
75 set (FORMAT_FILE elf.c dwarf.c)
76 math (EXPR BACKTRACE_ELF_SIZE 8*${CMAKE_C_SIZEOF_DATA_PTR})
78 set (FORMAT_FILE unknown.c)
79 set (BACKTRACE_SUPPORTED 0)
82 check_symbol_exists (mmap sys/mman.h HAVE_MMAP)
85 set (VIEW_FILE mmapio.c)
86 check_symbol_exists (MAP_ANONYMOUS sys/mman.h HAVE_MMAP_ANONYMOUS)
87 check_symbol_exists (MAP_ANON sys/mman.h HAVE_MMAP_ANON)
88 if (HAVE_MMAP_ANONYMOUS AND HAVE_MMAP_ANON)
89 set (ALLOC_FILE mmap.c)
91 set (ALLOC_FILE alloc.c)
94 set (VIEW_FILE read.c)
95 set (ALLOC_FILE alloc.c)
98 if (ALLOC_FILE STREQUAL "alloc.c")
99 set (BACKTRACE_USES_MALLOC 1)
101 set (BACKTRACE_USES_MALLOC 0)
104 add_definitions (-D_GNU_SOURCE)
105 set (CMAKE_REQUIRED_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} -D_GNU_SOURCE)
106 check_symbol_exists (dl_iterate_phdr link.h HAVE_DL_ITERATE_PHDR)
108 include (CheckFunctionExists)
109 check_function_exists (fcntl HAVE_FCNTL)
111 check_function_exists (strnlen HAVE_DECL_STRNLEN)
113 check_function_exists (getexecname HAVE_GETEXECNAME)
115 include (CheckIncludeFile)
116 check_include_file (dwarf.h HAVE_DWARF_H)
117 if (NOT HAVE_DWARF_H)
118 set (FORMAT_FILE unknown.c)
119 set (BACKTRACE_SUPPORTED 0)
122 configure_file (backtrace-supported.h.in backtrace-supported.h)
124 configure_file (config.h.in.cmake config.h)
126 include_directories (BEFORE
127 ${CMAKE_CURRENT_BINARY_DIR}
129 include_directories (
132 add_library (backtrace STATIC EXCLUDE_FROM_ALL
142 set_target_properties (backtrace PROPERTIES
143 COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}"
146 set (ENABLE_LIBBACKTRACE_TEST false CACHE BOOL "Enable libbacktrace testing")
147 if (ENABLE_LIBBACKTRACE_TEST)
149 add_executable (btest btest.c)
150 set_property (SOURCE btest.c PROPERTY COMPILE_FLAGS "-g")
151 target_link_libraries (btest backtrace)
152 add_test (test-libbacktrace btest)