[compiler-rt] r177684 - Don't forget to link in the C++-specific parts of the ubsan runtime when using the Makefile build system on Darwin.
Richard Smith
richard-llvm at metafoo.co.uk
Thu Mar 21 17:01:44 PDT 2013
Author: rsmith
Date: Thu Mar 21 19:01:44 2013
New Revision: 177684
URL: http://llvm.org/viewvc/llvm-project?rev=177684&view=rev
Log:
Don't forget to link in the C++-specific parts of the ubsan runtime when using the Makefile build system on Darwin.
Modified:
compiler-rt/trunk/make/platform/clang_darwin.mk
Modified: compiler-rt/trunk/make/platform/clang_darwin.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/platform/clang_darwin.mk?rev=177684&r1=177683&r2=177684&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
+++ compiler-rt/trunk/make/platform/clang_darwin.mk Thu Mar 21 19:01:44 2013
@@ -192,7 +192,8 @@ FUNCTIONS.asan_osx_dynamic := $(AsanFunc
$(SanitizerCommonFunctions) \
$(AsanDynamicFunctions)
-FUNCTIONS.ubsan_osx := $(UbsanFunctions) $(SanitizerCommonFunctions)
+FUNCTIONS.ubsan_osx := $(UbsanFunctions) $(UbsanCXXFunctions) \
+ $(SanitizerCommonFunctions)
CCKEXT_COMMON_FUNCTIONS := \
absvdi2 \
More information about the llvm-commits
mailing list