[llvm-commits] [compiler-rt] r93969 - /compiler-rt/trunk/make/platform/clang_darwin.mk

Daniel Dunbar daniel at zuster.org
Tue Jan 19 18:34:32 PST 2010


Author: ddunbar
Date: Tue Jan 19 20:34:31 2010
New Revision: 93969

URL: http://llvm.org/viewvc/llvm-project?rev=93969&view=rev
Log:
clang/Darwin: Rename x86_10.4 static lib config to just 10.4, and add 'eprintf'
which seems to be needed.

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=93969&r1=93968&r2=93969&view=diff

==============================================================================
--- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
+++ compiler-rt/trunk/make/platform/clang_darwin.mk Tue Jan 19 20:34:31 2010
@@ -6,13 +6,14 @@
 
 Description := Static runtime libraries for clang/Darwin.
 
-Configs := 
+Configs :=
 UniversalArchs :=
 
-# Configuration for targetting 10.4 on x86. We need a few functions missing from
-# libgcc_s.10.4.dylib.
-Configs += x86_10.4
-UniversalArchs.x86_10.4 := i386 x86_64
+# Configuration for targetting 10.4. We need a few functions missing from
+# libgcc_s.10.4.dylib. We only build x86 slices since clang doesn't really
+# support targetting PowerPC.
+Configs += 10.4
+UniversalArchs.10.4 := i386 x86_64
 
 # Configuration for targetting armv6. We need a few additional functions which
 # must be in the same linkage unit.
@@ -23,7 +24,7 @@
 
 CFLAGS := -Wall -Werror -O3 -fomit-frame-pointer
 
-FUNCTIONS.x86_10.4 := floatundidf floatundisf floatundixf
+FUNCTIONS.10.4 := eprintf floatundidf floatundisf floatundixf
 FUNCTIONS.armv6 := switch16 switch32 switch8 switchu8 \
                    save_vfp_d8_d15_regs restore_vfp_d8_d15_regs
 





More information about the llvm-commits mailing list