[llvm-commits] [test-suite] r126340 - /test-suite/trunk/TEST.dbgopt.Makefile
Devang Patel
dpatel at apple.com
Wed Feb 23 14:51:31 PST 2011
Author: dpatel
Date: Wed Feb 23 16:51:31 2011
New Revision: 126340
URL: http://llvm.org/viewvc/llvm-project?rev=126340&view=rev
Log:
Really use clang instead of llvmgcc as the compiler.
Modified:
test-suite/trunk/TEST.dbgopt.Makefile
Modified: test-suite/trunk/TEST.dbgopt.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.dbgopt.Makefile?rev=126340&r1=126339&r2=126340&view=diff
==============================================================================
--- test-suite/trunk/TEST.dbgopt.Makefile (original)
+++ test-suite/trunk/TEST.dbgopt.Makefile Wed Feb 23 16:51:31 2011
@@ -29,10 +29,10 @@
fi
Output/%.s: %.cpp Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
-fno-verbose-asm -mllvm --disable-debug-info-print \
-S ${PROJ_SRC_DIR}/$*.cpp -o Output/$*.first.s
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
-fno-verbose-asm ${PROJ_SRC_DIR}/$*.cpp -o Output/$*.second.s
@-if diff Output/$*.first.s Output/$*.second.s > $@; then \
echo "--------- TEST-PASS: $*" > Output/$*.dbgopt.report.txt; \
@@ -41,10 +41,10 @@
fi
Output/%.s: %.cc Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
-fno-verbose-asm -mllvm -disable-debug-info-print \
-S ${PROJ_SRC_DIR}/$*.cc -o Output/$*.first.s
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
-fno-verbose-asm ${PROJ_SRC_DIR}/$*.cc -o Output/$*.second.s
@-if diff Output/$*.first.s Output/$*.second.s > $@; then \
echo "--------- TEST-PASS: $*" > Output/$*.dbgopt.report.txt; \
@@ -53,10 +53,10 @@
fi
Output/%.s: %.m Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
+ -$(LLVMCC) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
-fno-verbose-asm -mllvm --disable-debug-info-print \
-S ${PROJ_SRC_DIR}/$*.m -o Output/$*.first.s
- -$(LLVMGCC) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
+ -$(LLVMCC) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
-fno-verbose-asm ${PROJ_SRC_DIR}/$*.m -o Output/$*.second.s
@-if diff Output/$*.first.s Output/$*.second.s > $@; then \
echo "--------- TEST-PASS: $*" > Output/$*.dbgopt.report.txt; \
@@ -65,10 +65,10 @@
fi
Output/%.s: %.mm Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -g -Os \
-fno-verbose-asm -mllvm --disable-debug-info-print \
-S ${PROJ_SRC_DIR}/$*.mm -o Output/$*.first.s
- -$(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
+ -$(LLVMCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -Os -S \
-fno-verbose-asm ${PROJ_SRC_DIR}/$*.mm -o Output/$*.second.s
@-if diff Output/$*.first.s Output/$*.second.s > $@; then \
echo "--------- TEST-PASS: $*" > Output/$*.dbgopt.report.txt; \
More information about the llvm-commits
mailing list