[llvm-commits] CVS: llvm-tv/tools/llvm-tv/Makefile
Misha Brukman
brukman at cs.uiuc.edu
Tue Apr 19 13:15:18 PDT 2005
Changes in directory llvm-tv/tools/llvm-tv:
Makefile updated: 1.19 -> 1.20
---
Log message:
* No need to eschew debugging, remove -DNDEBUG switch
* Send terminal output of llvm-tv to /dev/null because DSA spews out warnings
---
Diffs of the changes: (+3 -2)
Makefile | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm-tv/tools/llvm-tv/Makefile
diff -u llvm-tv/tools/llvm-tv/Makefile:1.19 llvm-tv/tools/llvm-tv/Makefile:1.20
--- llvm-tv/tools/llvm-tv/Makefile:1.19 Mon Apr 18 13:38:42 2005
+++ llvm-tv/tools/llvm-tv/Makefile Tue Apr 19 15:15:07 2005
@@ -7,7 +7,7 @@
# note: delete when FileUtils is assimilated into libsupport
USEDLIBS = snapshot
-CPPFLAGS = $(shell wx-config --cflags) -DNDEBUG
+CPPFLAGS = $(shell wx-config --cflags)
TOOLLINKOPTSB = $(shell wx-config --libs)
WXDIR = $(shell wx-config --prefix)
WXLIB = $(WXDIR)/lib
@@ -20,7 +20,8 @@
LLVMTV = $(PROJ_OBJ_ROOT)/Debug/bin/llvm-tv
$(LLVMToolDir)/llvm-tv.exe: Makefile
- echo exec env LD_LIBRARY_PATH=$(WXLIB):\$$LD_LIBRARY_PATH $(LLVMTV) > $@
+ echo exec env LD_LIBRARY_PATH=$(WXLIB):\$$LD_LIBRARY_PATH $(LLVMTV) \
+ "2&>1 > /dev/null" > $@
chmod u+x $@
$(LLVMToolDir)/opt-snap: Makefile
More information about the llvm-commits
mailing list