[CMake] Fix a typo in the variable used to retrieve source file names

for the `RTHwasan_dynamic` target.

Differential Revision: https://reviews.llvm.org/D49178

llvm-svn: 336944
This commit is contained in:
Dan Liew 2018-07-12 20:55:02 +00:00
parent 7bd9e94e38
commit 0de57a676c
1 changed files with 1 additions and 2 deletions

View File

@ -78,8 +78,7 @@ add_compiler_rt_object_libraries(RTHwasan_cxx
CFLAGS ${HWASAN_RTL_CFLAGS})
add_compiler_rt_object_libraries(RTHwasan_dynamic
ARCHS ${HWASAN_SUPPORTED_ARCH}
# FIXME: Typo? Probably should be HWASAN_RTL_CXX_SOURCES
SOURCES ${HWASAN_RTL_SOURCES} ${TSAN_RTL_CXX_SOURCES}
SOURCES ${HWASAN_RTL_SOURCES} ${HWASAN_RTL_CXX_SOURCES}
ADDITIONAL_HEADERS ${HWASAN_RTL_HEADERS}
CFLAGS ${HWASAN_DYNAMIC_CFLAGS})