summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordas <das>2003-11-06 13:12:23 (GMT)
committerdas <das>2003-11-06 13:12:23 (GMT)
commit3361d6ad5280072793769743494feecf91d1c3fc (patch)
tree92b13e771637ef18983c644cfa178ecf8ff559d1 /macosx
parente5199821f0f325aaab89027b511707191fbe2b67 (diff)
downloadtcl-3361d6ad5280072793769743494feecf91d1c3fc.zip
tcl-3361d6ad5280072793769743494feecf91d1c3fc.tar.gz
tcl-3361d6ad5280072793769743494feecf91d1c3fc.tar.bz2
* macosx/Makefile: optimized builds define NDEBUG to turn off
ThreadAlloc range checking.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/Makefile b/macosx/Makefile
index 79b6659..96a3d14 100644
--- a/macosx/Makefile
+++ b/macosx/Makefile
@@ -3,7 +3,7 @@
# Makefile to build Tcl on Mac OS X packaged as a Framework
# uses standard unix build system in tcl/unix
#
-# RCS: @(#) $Id: Makefile,v 1.5.2.6 2003/11/04 09:36:30 das Exp $
+# RCS: @(#) $Id: Makefile,v 1.5.2.7 2003/11/06 13:12:23 das Exp $
#
########################################################################################################
@@ -70,7 +70,8 @@ targets := $(foreach v,${meta},${$v})
develop_make_args := BUILD_STYLE=Development CONFIGURE_ARGS=--enable-symbols
deploy_make_args := BUILD_STYLE=Deployment \
MAKE_ARGS=INSTALL_PROGRAM="'$$\$${INSTALL} $$\$${INSTALL_STRIP_PROGRAM}'" \
- MAKE_ARGS+=INSTALL_LIBRARY="'$$\$${INSTALL} $$\$${INSTALL_STRIP_LIBRARY}'"
+ MAKE_ARGS+=INSTALL_LIBRARY="'$$\$${INSTALL} $$\$${INSTALL_STRIP_LIBRARY}'" \
+ MAKE_ARGS+=MEM_DEBUG_FLAGS="-DNDEBUG"
embedded_make_args := EMBEDDED_BUILD=1
install_make_args := INSTALL_BUILD=1