[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
Wed Jul 11 06:02:17 PDT 2018
delcypher created this revision.
delcypher added reviewers: eugenis, george.karpenkov, kubamracek.
Herald added subscribers: Sanitizers, mgorny.
[CMake] Fix a typo in the variable used to retrieve source file names for the `RTHwasan_dynamic` target.
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D49178
Files:
lib/hwasan/CMakeLists.txt
Index: lib/hwasan/CMakeLists.txt
===================================================================
--- lib/hwasan/CMakeLists.txt
+++ 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.154981.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180711/b51bc3b6/attachment.bin>
More information about the llvm-commits
mailing list