[compiler-rt] r212665 - Fix configure+make build of profile runtime	library
    Alexey Samsonov 
    vonosmas at gmail.com
       
    Wed Jul  9 17:53:20 PDT 2014
    
    
  
Author: samsonov
Date: Wed Jul  9 19:53:20 2014
New Revision: 212665
URL: http://llvm.org/viewvc/llvm-project?rev=212665&view=rev
Log:
Fix configure+make build of profile runtime library
Modified:
    compiler-rt/trunk/make/platform/clang_linux.mk
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=212665&r1=212664&r2=212665&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_linux.mk (original)
+++ compiler-rt/trunk/make/platform/clang_linux.mk Wed Jul  9 19:53:20 2014
@@ -129,8 +129,10 @@ CFLAGS.builtins-x86_64 += --sysroot=$(Pr
 
 FUNCTIONS.builtins-i386 := $(CommonFunctions) $(ArchFunctions.i386)
 FUNCTIONS.builtins-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
-FUNCTIONS.profile-i386 := GCDAProfiling
-FUNCTIONS.profile-x86_64 := GCDAProfiling
+FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \
+                          InstrProfilingFile InstrProfilingPlatformOther \
+                          InstrProfilingRuntime
+FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
 FUNCTIONS.san-i386 := $(SanitizerCommonFunctions)
 FUNCTIONS.san-x86_64 := $(SanitizerCommonFunctions)
 FUNCTIONS.asan-i386 := $(AsanFunctions) $(InterceptionFunctions) \
    
    
More information about the llvm-commits
mailing list