[PATCH] D49178: [CMake] Fix a typo in the variable used to retrieve source file names for the `RTHwasan_dynamic` target.
Dan Liew via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 12 14:00:19 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL336944: [CMake] Fix a typo in the variable used to retrieve source file names (authored by delcypher, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D49178?vs=154981&id=155267#toc
Repository:
rL LLVM
https://reviews.llvm.org/D49178
Files:
compiler-rt/trunk/lib/hwasan/CMakeLists.txt
Index: compiler-rt/trunk/lib/hwasan/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/lib/hwasan/CMakeLists.txt
+++ compiler-rt/trunk/lib/hwasan/CMakeLists.txt
@@ -78,8 +78,7 @@
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})
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49178.155267.patch
Type: text/x-patch
Size: 608 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180712/6c1eec5a/attachment.bin>
More information about the llvm-commits
mailing list