diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-06-09 08:14:03 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-06-09 08:14:03 (GMT) |
commit | 23ec1dcf789e11961e799dbb7336bd0da2b785ec (patch) | |
tree | fb37a7c9d47db08c5d1615d2846ccc28ac2bc357 /PC/os2emx | |
parent | dcfb38c21b323d9672aee196fbec5276f30f512d (diff) | |
download | cpython-23ec1dcf789e11961e799dbb7336bd0da2b785ec.zip cpython-23ec1dcf789e11961e799dbb7336bd0da2b785ec.tar.gz cpython-23ec1dcf789e11961e799dbb7336bd0da2b785ec.tar.bz2 |
bump stack size to cater for _sre recursion.
reorganise modules, so that most standard extensions are built into
the Python DLL. this slightly improves performance; reduces
fragmentation of address spaces and slightly reduces memory footprint.
Diffstat (limited to 'PC/os2emx')
-rw-r--r-- | PC/os2emx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 265ff0b..1726613 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -214,7 +214,7 @@ $(OUT)%$O: %.c @echo Creating .DEF file: $@ @echo NAME $(notdir $*) $(EXETYPE.$(notdir $*).exe) >$@ @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*).exe)$(DQUOTE) >>$@ - @echo STACKSIZE 1048576 >>$@ + @echo STACKSIZE 1572864 >>$@ # Output file names PYTHON_VER= 2.3 |