Displaying 1 result from an estimated 1 matches for "llcassemblerflags".
2008 Mar 21
0
[LLVMdev] Apple's GCC and .s/.S files in llvm-test
...E5F FA3C 62DB 4AA7 B196 4A62
PGP Public Key from: keyserver.pgp.com
-------------- next part --------------
Index: Makefile.programs
===================================================================
--- Makefile.programs (revision 48557)
+++ Makefile.programs (working copy)
@@ -377,15 +377,25 @@
LLCASSEMBLERFLAGS = -mcpu=v9
endif
+# On darwin, Apple's GCC doesn't make a distinction between file.s and file.S,
+# it always run the preprocessor. One way to disable that is to force the
+# language to be assembler (not assembler-with-cpp).
+FORCEASM =
+ifeq ($(OS),Darwin)
+FORCEASM = -x assembler
+en...