diff options
author | das <das> | 2003-11-06 13:11:00 (GMT) |
---|---|---|
committer | das <das> | 2003-11-06 13:11:00 (GMT) |
commit | ff55694441c776c36d477889a1e6183e32d12aaa (patch) | |
tree | ea26e1c5c79694bf855ccc3309b4a3e2bdcaf0ff /macosx | |
parent | bb75623bfdb7105dcd6f60e0363d4597213cd139 (diff) | |
download | tcl-ff55694441c776c36d477889a1e6183e32d12aaa.zip tcl-ff55694441c776c36d477889a1e6183e32d12aaa.tar.gz tcl-ff55694441c776c36d477889a1e6183e32d12aaa.tar.bz2 |
* macosx/Makefile: optimized builds define NDEBUG to turn off
ThreadAlloc range checking.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/Makefile b/macosx/Makefile index ed5441e..aedb08c 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.10 2003/11/04 09:36:45 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.11 2003/11/06 13:11:00 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 |