kfdtest: Add sanitizer flags after C flags are set

Otherwise they get overwritten

Change-Id: I9042422d4515e7ac812ed34779906b0b2c44545c


[ROCm/ROCR-Runtime commit: 92ad039915]
This commit is contained in:
Kent Russell
2020-11-02 06:30:51 -05:00
committed by Gefei Jiang
parent 17a83e8e69
commit 08bded0cb3
@@ -100,13 +100,6 @@ include_directories(${SP3_DIR})
include_directories(${DRM_INCLUDE_DIRS})
## Address Sanitize Flag
if ( ${ADDRESS_SANITIZER} )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" -fsanitize=address )
set ( CMAKE_EXE_LINKER_FLAGS -fsanitize=address )
endif ()
set (SRC_FILES gtest-1.6.0/gtest-all.cpp
src/AqlQueue.cpp
@@ -172,6 +165,12 @@ else ()
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g" )
endif ()
## Address Sanitize Flag
if ( ${ADDRESS_SANITIZER} )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" -fsanitize=address )
set ( CMAKE_EXE_LINKER_FLAGS -fsanitize=address )
endif ()
# link_directories() has to be put before add_executable()
# The modules found by pkg_check_modules() in the default pkg config
# path do not need to use link_directories() here.