Fix 'no_sanitize_undefined' attribute for GCC4.8 (#5090)

This commit is contained in:
Vladimir Glavnyy
2018-12-18 02:50:31 +07:00
committed by Wouter van Oortmerssen
parent dba962ebb8
commit 9ad73bf5a7
2 changed files with 2 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ function(add_fsanitize_to_target _target _sanitizer)
# FLATBUFFERS_CODE_SANITIZE: boolean {ON,OFF,YES,NO} or string with list of sanitizer.
# List of sanitizer is string starts with '=': "=address,undefined,thread,memory".
if((${CMAKE_CXX_COMPILER_ID} MATCHES "Clang") OR
((${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.8"))
((${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9"))
)
set(_sanitizer_flags "=address,undefined")
if(_sanitizer MATCHES "=.*")