[llvm-commits] CVS: llvm-test/SingleSource/Makefile.singlesrc
Reid Spencer
reid at x10sys.com
Wed Feb 28 22:14:31 PST 2007
Changes in directory llvm-test/SingleSource:
Makefile.singlesrc updated: 1.36 -> 1.37
---
Log message:
Put the -O2 first so that its possible to override it.
---
Diffs of the changes: (+2 -2)
Makefile.singlesrc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm-test/SingleSource/Makefile.singlesrc
diff -u llvm-test/SingleSource/Makefile.singlesrc:1.36 llvm-test/SingleSource/Makefile.singlesrc:1.37
--- llvm-test/SingleSource/Makefile.singlesrc:1.36 Wed Feb 14 12:00:36 2007
+++ llvm-test/SingleSource/Makefile.singlesrc Thu Mar 1 00:14:14 2007
@@ -34,10 +34,10 @@
# FIXME: LIBS should be specified, not hardcoded to -lm
Output/%.native: $(SourceDir)/%.c Output/.dir
- -$(CC) $(CFLAGS) -O2 $(TARGET_FLAGS) $< -lm -o $@ $(LDFLAGS)
+ -$(CC) -O2 $(CFLAGS) $(TARGET_FLAGS) $< -lm -o $@ $(LDFLAGS)
Output/%.native: $(SourceDir)/%.cpp Output/.dir
- -$(CXX) $(CXXFLAGS) -O2 $(TARGET_FLAGS) $< -lm -o $@ $(LDFLAGS)
+ -$(CXX) -O2 $(CXXFLAGS) $(TARGET_FLAGS) $< -lm -o $@ $(LDFLAGS)
bugpoint-gccas bugpoint-opt bugpoint-llvm-ld bugpoint-gccld bugpoint-jit bugpoint-llc bugpoint-llc-beta:
More information about the llvm-commits
mailing list