[compiler-rt] r336944 - [CMake] Fix a typo in the variable used to retrieve source file names

Dan Liew via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 12 13:55:02 PDT 2018


Author: delcypher
Date: Thu Jul 12 13:55:02 2018
New Revision: 336944

URL: http://llvm.org/viewvc/llvm-project?rev=336944&view=rev
Log:
[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

Modified:
    compiler-rt/trunk/lib/hwasan/CMakeLists.txt

Modified: compiler-rt/trunk/lib/hwasan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/hwasan/CMakeLists.txt?rev=336944&r1=336943&r2=336944&view=diff
==============================================================================
--- compiler-rt/trunk/lib/hwasan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/hwasan/CMakeLists.txt Thu Jul 12 13:55:02 2018
@@ -78,8 +78,7 @@ add_compiler_rt_object_libraries(RTHwasa
   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})
 




More information about the llvm-commits mailing list