Reid Kleckner | a141032 | 2015-03-13 21:39:29 +0000 | [diff] [blame] | 1 | # On Windows, CMAKE_*_FLAGS are built for MSVC but we use the GCC clang.exe, |
| 2 | # which uses completely different flags. Translate some common flag types, and |
| 3 | # drop the rest. |
| 4 | function(translate_msvc_cflags out_flags msvc_flags) |
| 5 | # Insert an empty string in the list to simplify processing. |
| 6 | set(msvc_flags ";${msvc_flags}") |
| 7 | |
| 8 | # Canonicalize /flag to -flag. |
| 9 | string(REPLACE ";/" ";-" msvc_flags "${msvc_flags}") |
| 10 | |
| 11 | # Make space separated -D and -U flags into joined flags. |
| 12 | string(REGEX REPLACE ";-\([DU]\);" ";-\\1" msvc_flags "${msvc_flags}") |
| 13 | |
| 14 | set(clang_flags "") |
| 15 | foreach(flag ${msvc_flags}) |
| 16 | if ("${flag}" MATCHES "^-[DU]") |
| 17 | # Pass through basic command line macro definitions (-DNDEBUG). |
| 18 | list(APPEND clang_flags "${flag}") |
| 19 | elseif ("${flag}" MATCHES "^-O[2x]") |
| 20 | # Canonicalize normal optimization flags to -O2. |
| 21 | list(APPEND clang_flags "-O2") |
| 22 | endif() |
| 23 | endforeach() |
| 24 | set(${out_flags} "${clang_flags}" PARENT_SCOPE) |
| 25 | endfunction() |
| 26 | |
George Karpenkov | 831875b | 2017-07-28 17:32:37 +0000 | [diff] [blame^] | 27 | # Compile a sanitizer test with a freshly built clang |
| 28 | # for a given architecture, adding the result to the object list. |
| 29 | # - obj_list: output list of objects, populated by path |
| 30 | # of the generated object file. |
| 31 | # - source: source file of a test. |
| 32 | # - arch: architecture to compile for. |
| 33 | # sanitizer_test_compile(<obj_list> <source> <arch> |
| 34 | # KIND <custom namespace> |
| 35 | # COMPILE_DEPS <list of compile-time dependencies> |
| 36 | # DEPS <list of dependencies> |
| 37 | # CFLAGS <list of flags> |
| 38 | # ) |
| 39 | macro(sanitizer_test_compile obj_list source arch) |
| 40 | cmake_parse_arguments(TEST |
| 41 | "" "" "KIND;COMPILE_DEPS;DEPS;CFLAGS" ${ARGN}) |
| 42 | get_filename_component(basename ${source} NAME) |
| 43 | if(CMAKE_CONFIGURATION_TYPES) |
| 44 | set(output_obj |
| 45 | "${CMAKE_CFG_INTDIR}/${obj_list}.${basename}.${arch}${TEST_KIND}.o") |
| 46 | else() |
| 47 | set(output_obj "${obj_list}.${basename}.${arch}${TEST_KIND}.o") |
| 48 | endif() |
| 49 | |
| 50 | # Write out architecture-specific flags into TARGET_CFLAGS variable. |
| 51 | get_target_flags_for_arch(${arch} TARGET_CFLAGS) |
| 52 | set(COMPILE_DEPS ${TEST_COMPILE_DEPS}) |
| 53 | if(NOT COMPILER_RT_STANDALONE_BUILD) |
| 54 | list(APPEND COMPILE_DEPS ${TEST_DEPS}) |
| 55 | endif() |
| 56 | clang_compile(${output_obj} ${source} |
| 57 | CFLAGS ${TEST_CFLAGS} ${TARGET_CFLAGS} |
| 58 | DEPS ${TEST_COMPILE_DEPS}) |
| 59 | list(APPEND ${obj_list} ${output_obj}) |
| 60 | endmacro() |
| 61 | |
Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 62 | # Compile a source into an object file with COMPILER_RT_TEST_COMPILER using |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 63 | # a provided compile flags and dependenices. |
| 64 | # clang_compile(<object> <source> |
| 65 | # CFLAGS <list of compile flags> |
| 66 | # DEPS <list of dependencies>) |
| 67 | macro(clang_compile object_file source) |
Filipe Cabecinhas | 7af0a1c | 2015-06-19 03:39:24 +0000 | [diff] [blame] | 68 | cmake_parse_arguments(SOURCE "" "" "CFLAGS;DEPS" ${ARGN}) |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 69 | get_filename_component(source_rpath ${source} REALPATH) |
Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 70 | if(NOT COMPILER_RT_STANDALONE_BUILD) |
Alexey Samsonov | 6239ebc | 2015-01-06 20:58:40 +0000 | [diff] [blame] | 71 | list(APPEND SOURCE_DEPS clang compiler-rt-headers) |
Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 72 | endif() |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 73 | if (TARGET CompilerRTUnitTestCheckCxx) |
| 74 | list(APPEND SOURCE_DEPS CompilerRTUnitTestCheckCxx) |
| 75 | endif() |
Alexey Samsonov | 1847401 | 2014-03-24 09:42:12 +0000 | [diff] [blame] | 76 | string(REGEX MATCH "[.](cc|cpp)$" is_cxx ${source_rpath}) |
| 77 | if(is_cxx) |
| 78 | string(REPLACE " " ";" global_flags "${CMAKE_CXX_FLAGS}") |
| 79 | else() |
| 80 | string(REPLACE " " ";" global_flags "${CMAKE_C_FLAGS}") |
| 81 | endif() |
Reid Kleckner | a141032 | 2015-03-13 21:39:29 +0000 | [diff] [blame] | 82 | |
| 83 | if (MSVC) |
| 84 | translate_msvc_cflags(global_flags "${global_flags}") |
Timur Iskhodzhanov | 82ee043 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 85 | endif() |
Reid Kleckner | a141032 | 2015-03-13 21:39:29 +0000 | [diff] [blame] | 86 | |
Chris Bieneman | 73107c6 | 2015-08-20 17:35:56 +0000 | [diff] [blame] | 87 | if (APPLE) |
| 88 | set(global_flags ${OSX_SYSROOT_FLAG} ${global_flags}) |
| 89 | endif() |
| 90 | |
Alexey Samsonov | 1847401 | 2014-03-24 09:42:12 +0000 | [diff] [blame] | 91 | # Ignore unknown warnings. CMAKE_CXX_FLAGS may contain GCC-specific options |
| 92 | # which are not supported by Clang. |
| 93 | list(APPEND global_flags -Wno-unknown-warning-option) |
| 94 | set(compile_flags ${global_flags} ${SOURCE_CFLAGS}) |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 95 | add_custom_command( |
| 96 | OUTPUT ${object_file} |
Timur Iskhodzhanov | b0279d7 | 2014-05-12 08:55:20 +0000 | [diff] [blame] | 97 | COMMAND ${COMPILER_RT_TEST_COMPILER} ${compile_flags} -c |
Timur Iskhodzhanov | 82ee043 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 98 | -o "${object_file}" |
Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 99 | ${source_rpath} |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 100 | MAIN_DEPENDENCY ${source} |
Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 101 | DEPENDS ${SOURCE_DEPS}) |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 102 | endmacro() |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 103 | |
| 104 | # On Darwin, there are no system-wide C++ headers and the just-built clang is |
| 105 | # therefore not able to compile C++ files unless they are copied/symlinked into |
| 106 | # ${LLVM_BINARY_DIR}/include/c++ |
| 107 | # The just-built clang is used to build compiler-rt unit tests. Let's detect |
| 108 | # this before we try to build the tests and print out a suggestion how to fix |
| 109 | # it. |
| 110 | # On other platforms, this is currently not an issue. |
| 111 | macro(clang_compiler_add_cxx_check) |
| 112 | if (APPLE) |
| 113 | set(CMD |
Chris Bieneman | 73107c6 | 2015-08-20 17:35:56 +0000 | [diff] [blame] | 114 | "echo '#include <iostream>' | ${COMPILER_RT_TEST_COMPILER} ${OSX_SYSROOT_FLAG} -E -x c++ - > /dev/null" |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 115 | "if [ $? != 0 ] " |
| 116 | " then echo" |
| 117 | " echo 'Your just-built clang cannot find C++ headers, which are needed to build and run compiler-rt tests.'" |
| 118 | " echo 'You should copy or symlink your system C++ headers into ${LLVM_BINARY_DIR}/include/c++'" |
| 119 | " if [ -d $(dirname $(dirname $(xcrun -f clang)))/include/c++ ]" |
| 120 | " then echo 'e.g. with:'" |
| 121 | " echo ' cp -r' $(dirname $(dirname $(xcrun -f clang)))/include/c++ '${LLVM_BINARY_DIR}/include/'" |
| 122 | " elif [ -d $(dirname $(dirname $(xcrun -f clang)))/lib/c++ ]" |
| 123 | " then echo 'e.g. with:'" |
| 124 | " echo ' cp -r' $(dirname $(dirname $(xcrun -f clang)))/lib/c++ '${LLVM_BINARY_DIR}/include/'" |
| 125 | " fi" |
| 126 | " echo 'This can also be fixed by checking out the libcxx project from llvm.org and installing the headers'" |
| 127 | " echo 'into your build directory:'" |
Alexey Samsonov | a7be03d | 2016-02-01 21:08:16 +0000 | [diff] [blame] | 128 | " echo ' cd ${LLVM_MAIN_SRC_DIR}/projects && svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx'" |
| 129 | " echo ' cd ${LLVM_BINARY_DIR} && make -C ${LLVM_MAIN_SRC_DIR}/projects/libcxx installheaders HEADER_DIR=${LLVM_BINARY_DIR}/include'" |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 130 | " echo" |
| 131 | " false" |
| 132 | "fi" |
| 133 | ) |
| 134 | add_custom_target(CompilerRTUnitTestCheckCxx |
| 135 | COMMAND bash -c "${CMD}" |
| 136 | COMMENT "Checking that just-built clang can find C++ headers..." |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 137 | VERBATIM) |
Alexander Potapenko | bc4ce3a | 2014-09-25 09:30:05 +0000 | [diff] [blame] | 138 | if (TARGET clang) |
| 139 | ADD_DEPENDENCIES(CompilerRTUnitTestCheckCxx clang) |
| 140 | endif() |
Kuba Brecka | fa2de77 | 2014-09-10 17:23:58 +0000 | [diff] [blame] | 141 | endif() |
| 142 | endmacro() |