[pure-lang-svn] SF.net SVN: pure-lang: [133] pure/trunk/Makefile
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-05-25 09:14:19
|
Revision: 133 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=133&view=rev Author: agraef Date: 2008-05-25 02:14:26 -0700 (Sun, 25 May 2008) Log Message: ----------- Completely disable all DEBUG sections for release build. Modified Paths: -------------- pure/trunk/Makefile Modified: pure/trunk/Makefile =================================================================== --- pure/trunk/Makefile 2008-05-25 07:02:37 UTC (rev 132) +++ pure/trunk/Makefile 2008-05-25 09:14:26 UTC (rev 133) @@ -78,8 +78,8 @@ CFLAGS = -g -O -Wall else ifeq ($(build),release) -CXXFLAGS = -O3 -DNDEBUG -Wall $(LLVM_FLAGS) -CFLAGS = -O3 -DNDEBUG -Wall +CXXFLAGS = -O3 -DNDEBUG -DDEBUG=0 -Wall $(LLVM_FLAGS) +CFLAGS = -O3 -DNDEBUG -DDEBUG=0 -Wall else ifeq ($(build),debug) CXXFLAGS = -g -Wall $(LLVM_FLAGS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |