forked from OSchip/llvm-project
sanitizer_common: enable format string checking
Enable -Wformat in sanitizer_common now that it's cleaned up from existing warnings. But disable it in all sanitizers for now since they are not cleaned up yet, but inherit sanitizer_common CFLAGS. Depends on D107980. Reviewed By: vitalybuka Differential Revision: https://reviews.llvm.org/D107981
This commit is contained in:
parent
4a91bbcc93
commit
123c58ea26
|
@ -438,8 +438,6 @@ endif()
|
|||
append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS)
|
||||
append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS)
|
||||
append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS)
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format SANITIZER_COMMON_CFLAGS)
|
||||
# format-pedantic warns about passing T* for %p, which is not useful.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT_PEDANTIC -Wno-format-pedantic SANITIZER_COMMON_CFLAGS)
|
||||
append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS)
|
||||
|
|
|
@ -80,6 +80,9 @@ set(ASAN_COMMON_DEFINITIONS ${COMPILER_RT_ASAN_SHADOW_SCALE_DEFINITION})
|
|||
|
||||
append_rtti_flag(OFF ASAN_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format ASAN_CFLAGS)
|
||||
|
||||
set(ASAN_DYNAMIC_LINK_FLAGS ${SANITIZER_COMMON_LINK_FLAGS})
|
||||
|
||||
if(ANDROID)
|
||||
|
|
|
@ -11,6 +11,9 @@ if(OS_NAME MATCHES "Linux" OR OS_NAME MATCHES "FreeBSD" OR OS_NAME MATCHES "NetB
|
|||
${SANITIZER_COMMON_CFLAGS}
|
||||
)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format CFI_CFLAGS)
|
||||
|
||||
set(CFI_DIAG_CFLAGS
|
||||
-DCFI_ENABLE_DIAG=1
|
||||
)
|
||||
|
|
|
@ -26,6 +26,9 @@ append_rtti_flag(OFF DFSAN_COMMON_CFLAGS)
|
|||
# Prevent clang from generating libc calls.
|
||||
append_list_if(COMPILER_RT_HAS_FFREESTANDING_FLAG -ffreestanding DFSAN_COMMON_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format DFSAN_COMMON_CFLAGS)
|
||||
|
||||
# Static runtime library.
|
||||
add_compiler_rt_component(dfsan)
|
||||
|
||||
|
|
|
@ -56,6 +56,9 @@ append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC HWASAN_RTL_CFLAGS)
|
|||
# Prevent clang from generating libc calls.
|
||||
append_list_if(COMPILER_RT_HAS_FFREESTANDING_FLAG -ffreestanding HWASAN_RTL_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format HWASAN_RTL_CFLAGS)
|
||||
|
||||
set(HWASAN_DYNAMIC_LINK_FLAGS ${SANITIZER_COMMON_LINK_FLAGS})
|
||||
|
||||
if(ANDROID)
|
||||
|
|
|
@ -3,6 +3,9 @@ include_directories(..)
|
|||
set(LSAN_CFLAGS ${SANITIZER_COMMON_CFLAGS})
|
||||
append_rtti_flag(OFF LSAN_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format LSAN_CFLAGS)
|
||||
|
||||
set(LSAN_COMMON_SOURCES
|
||||
lsan_common.cpp
|
||||
lsan_common_fuchsia.cpp
|
||||
|
|
|
@ -45,6 +45,9 @@ include_directories(..)
|
|||
set(MEMPROF_CFLAGS ${SANITIZER_COMMON_CFLAGS})
|
||||
set(MEMPROF_COMMON_DEFINITIONS "")
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format MEMPROF_CFLAGS)
|
||||
|
||||
append_rtti_flag(OFF MEMPROF_CFLAGS)
|
||||
|
||||
set(MEMPROF_DYNAMIC_LINK_FLAGS ${SANITIZER_COMMON_LINK_FLAGS})
|
||||
|
|
|
@ -40,6 +40,9 @@ endif()
|
|||
# Prevent clang from generating libc calls.
|
||||
append_list_if(COMPILER_RT_HAS_FFREESTANDING_FLAG -ffreestanding MSAN_RTL_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format MSAN_RTL_CFLAGS)
|
||||
|
||||
set(MSAN_RUNTIME_LIBRARIES)
|
||||
|
||||
# Static runtime library.
|
||||
|
|
|
@ -7,6 +7,9 @@ set(SCUDO_CFLAGS ${SANITIZER_COMMON_CFLAGS})
|
|||
list(APPEND SCUDO_CFLAGS -fbuiltin)
|
||||
append_rtti_flag(OFF SCUDO_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format SCUDO_CFLAGS)
|
||||
|
||||
set(SCUDO_MINIMAL_DYNAMIC_LIBS ${SANITIZER_COMMON_LINK_LIBS})
|
||||
append_list_if(COMPILER_RT_HAS_LIBDL dl SCUDO_MINIMAL_DYNAMIC_LIBS)
|
||||
append_list_if(COMPILER_RT_HAS_LIBRT rt SCUDO_MINIMAL_DYNAMIC_LIBS)
|
||||
|
|
|
@ -11,6 +11,9 @@ if(NOT CMAKE_SYSTEM MATCHES "FreeBSD")
|
|||
endif()
|
||||
append_rtti_flag(OFF TSAN_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format TSAN_CFLAGS)
|
||||
|
||||
if(COMPILER_RT_TSAN_DEBUG_OUTPUT)
|
||||
# Add extra debug information to TSan runtime. This configuration is rarely
|
||||
# used, but we need to support it so that debug output will not bitrot.
|
||||
|
|
|
@ -44,6 +44,9 @@ set(UBSAN_CFLAGS ${SANITIZER_COMMON_CFLAGS})
|
|||
append_rtti_flag(OFF UBSAN_CFLAGS)
|
||||
append_list_if(SANITIZER_CAN_USE_CXXABI -DUBSAN_CAN_USE_CXXABI UBSAN_CFLAGS)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format UBSAN_CFLAGS)
|
||||
|
||||
set(UBSAN_STANDALONE_CFLAGS ${SANITIZER_COMMON_CFLAGS})
|
||||
append_rtti_flag(OFF UBSAN_STANDALONE_CFLAGS)
|
||||
append_list_if(SANITIZER_CAN_USE_CXXABI -DUBSAN_CAN_USE_CXXABI UBSAN_STANDALONE_CFLAGS)
|
||||
|
|
|
@ -135,6 +135,9 @@ include_directories(../../include)
|
|||
set(XRAY_CFLAGS ${COMPILER_RT_COMMON_CFLAGS})
|
||||
set(XRAY_COMMON_DEFINITIONS XRAY_HAS_EXCEPTIONS=1)
|
||||
|
||||
# Too many existing bugs, needs cleanup.
|
||||
append_list_if(COMPILER_RT_HAS_WNO_FORMAT -Wno-format XRAY_CFLAGS)
|
||||
|
||||
# We don't need RTTI in XRay, so turn that off.
|
||||
append_rtti_flag(OFF XRAY_CFLAGS)
|
||||
|
||||
|
|
Loading…
Reference in New Issue