[compiler-rt] r253735 - Mention new InstrProfilingWriter file in clang_{darwin|linux}.mk
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 20 15:09:49 PST 2015
Author: matze
Date: Fri Nov 20 17:09:49 2015
New Revision: 253735
URL: http://llvm.org/viewvc/llvm-project?rev=253735&view=rev
Log:
Mention new InstrProfilingWriter file in clang_{darwin|linux}.mk
I hope this fixes our internal buildbots (rdar://23614130)
Modified:
compiler-rt/trunk/make/platform/clang_darwin.mk
compiler-rt/trunk/make/platform/clang_linux.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=253735&r1=253734&r2=253735&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
+++ compiler-rt/trunk/make/platform/clang_darwin.mk Fri Nov 20 17:09:49 2015
@@ -276,7 +276,8 @@ FUNCTIONS.osx := mulosi4 mulodi4 muloti4
FUNCTIONS.profile_osx := GCDAProfiling InstrProfiling InstrProfilingBuffer \
InstrProfilingFile InstrProfilingPlatformDarwin \
- InstrProfilingRuntime InstrProfilingUtil
+ InstrProfilingRuntime InstrProfilingUtil \
+ InstrProfilingWriter
FUNCTIONS.profile_ios := $(FUNCTIONS.profile_osx)
FUNCTIONS.asan_osx_dynamic := $(AsanFunctions) $(AsanCXXFunctions) \
Modified: compiler-rt/trunk/make/platform/clang_linux.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/platform/clang_linux.mk?rev=253735&r1=253734&r2=253735&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_linux.mk (original)
+++ compiler-rt/trunk/make/platform/clang_linux.mk Fri Nov 20 17:09:49 2015
@@ -78,7 +78,8 @@ FUNCTIONS.builtins-i386 := $(CommonFunct
FUNCTIONS.builtins-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \
InstrProfilingFile InstrProfilingPlatformOther \
- InstrProfilingRuntime InstrProfilingUtil
+ InstrProfilingRuntime InstrProfilingUtil \
+ InstrProfilingWriter
FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
# Always use optimized variants.
More information about the llvm-commits
mailing list