[llvm-commits] CVS: llvm/Makefile.rules
Chris Lattner
lattner at cs.uiuc.edu
Tue Jul 11 11:34:03 PDT 2006
Changes in directory llvm:
Makefile.rules updated: 1.384 -> 1.385
---
Log message:
Profile builds should always have debug info enabled.
---
Diffs of the changes: (+3 -3)
Makefile.rules | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.384 llvm/Makefile.rules:1.385
--- llvm/Makefile.rules:1.384 Thu Jun 29 14:38:04 2006
+++ llvm/Makefile.rules Tue Jul 11 13:33:50 2006
@@ -208,9 +208,9 @@
ifdef ENABLE_PROFILING
BuildMode := Profile
- CXX.Flags := $(OPTIMIZE_OPTION) -pg
- C.Flags := $(OPTIMIZE_OPTION) -pg
- LD.Flags := $(OPTIMIZE_OPTION) -pg
+ CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
+ C.Flags := $(OPTIMIZE_OPTION) -pg -g
+ LD.Flags := $(OPTIMIZE_OPTION) -pg -g
else
ifdef ENABLE_OPTIMIZED
BuildMode := Release
More information about the llvm-commits
mailing list