1 # First, add the subdirectories which contain feature-based runtime libraries
2 # and several convenience helper libraries.
5 include(SanitizerUtils)
7 # Hoist the building of sanitizer_common on whether we're building either the
8 # sanitizers or xray (or both).
10 #TODO: Refactor sanitizer_common into smaller pieces (e.g. flag parsing, utils).
11 if (COMPILER_RT_HAS_SANITIZER_COMMON AND
12 (COMPILER_RT_BUILD_SANITIZERS OR COMPILER_RT_BUILD_XRAY OR COMPILER_RT_BUILD_MEMPROF))
13 add_subdirectory(sanitizer_common)
16 if(COMPILER_RT_BUILD_BUILTINS)
17 add_subdirectory(builtins)
20 if(COMPILER_RT_BUILD_CRT)
24 function(compiler_rt_build_runtime runtime)
25 string(TOUPPER ${runtime} runtime_uppercase)
26 if(COMPILER_RT_HAS_${runtime_uppercase})
27 if(${runtime} STREQUAL tsan)
28 add_subdirectory(tsan/dd)
30 if(${runtime} STREQUAL scudo_standalone)
31 add_subdirectory(scudo/standalone)
33 add_subdirectory(${runtime})
38 if(COMPILER_RT_BUILD_SANITIZERS OR COMPILER_RT_BUILD_MEMPROF)
39 compiler_rt_build_runtime(interception)
42 if(COMPILER_RT_BUILD_SANITIZERS)
43 if(COMPILER_RT_HAS_SANITIZER_COMMON)
44 add_subdirectory(stats)
45 add_subdirectory(lsan)
46 add_subdirectory(ubsan)
49 foreach(sanitizer ${COMPILER_RT_SANITIZERS_TO_BUILD})
50 compiler_rt_build_runtime(${sanitizer})
54 if(COMPILER_RT_BUILD_PROFILE AND COMPILER_RT_HAS_PROFILE)
55 compiler_rt_build_runtime(profile)
58 if(COMPILER_RT_BUILD_XRAY)
59 compiler_rt_build_runtime(xray)
62 if(COMPILER_RT_BUILD_LIBFUZZER)
63 compiler_rt_build_runtime(fuzzer)
66 if(COMPILER_RT_BUILD_MEMPROF AND COMPILER_RT_HAS_SANITIZER_COMMON)
67 compiler_rt_build_runtime(memprof)
70 if(COMPILER_RT_BUILD_ORC)
71 compiler_rt_build_runtime(orc)
74 # It doesn't normally make sense to build runtimes when a sanitizer is enabled,
75 # so we don't add_subdirectory the runtimes in that case. However, the opposite
76 # is true for fuzzers that exercise parts of the runtime. So we add the fuzzer
77 # directories explicitly here.
78 add_subdirectory(scudo/standalone/fuzz)