|
[Sbcl-commits] CVS: sbcl/src/compiler/x86 parms.lisp,1.77,1.78
From: Nikodemus Siivola <demoss@us...> - 2010-09-30 08:36
|
Update of /cvsroot/sbcl/sbcl/src/compiler/x86 In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14931/src/compiler/x86 Modified Files: parms.lisp Log Message: 1.0.43.10: make.sh now accepts --dynamic-space-size=<size> option ...so users can build SBCL with the right default without touching source. Fixes lp#383222. Index: parms.lisp =================================================================== RCS file: /cvsroot/sbcl/sbcl/src/compiler/x86/parms.lisp,v retrieving revision 1.77 retrieving revision 1.78 diff -u -d -r1.77 -r1.78 --- parms.lisp 8 Sep 2010 01:04:43 -0000 1.77 +++ parms.lisp 30 Sep 2010 08:36:38 -0000 1.78 @@ -194,7 +194,7 @@ (def!constant static-space-end #x221ff000) (def!constant dynamic-space-start #x22300000) - (def!constant dynamic-space-end #x42300000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x42300000)) (def!constant linkage-table-space-start #x22200000) (def!constant linkage-table-space-end #x222ff000)) @@ -208,7 +208,7 @@ (def!constant static-space-end #x011ff000) (def!constant dynamic-space-start #x09000000) - (def!constant dynamic-space-end #x29000000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x29000000)) (def!constant linkage-table-space-start #x01200000) (def!constant linkage-table-space-end #x012ff000)) @@ -222,7 +222,7 @@ (def!constant static-space-end #x201ff000) (def!constant dynamic-space-start #x48000000) - (def!constant dynamic-space-end #xA0000000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #xA0000000)) (def!constant linkage-table-space-start #x20200000) (def!constant linkage-table-space-end #x202ff000)) @@ -236,7 +236,7 @@ (def!constant static-space-end #x011ff000) (def!constant dynamic-space-start #x58000000) - (def!constant dynamic-space-end #x98000000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x98000000)) (def!constant linkage-table-space-start #x01200000) (def!constant linkage-table-space-end #x012ff000)) @@ -250,7 +250,7 @@ (def!constant static-space-end #x1b1ff000) (def!constant dynamic-space-start #x40000000) - (def!constant dynamic-space-end #x5bfff000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x5bfff000)) (def!constant linkage-table-space-start #x1b200000) (def!constant linkage-table-space-end #x1b2ff000)) @@ -264,7 +264,7 @@ (def!constant static-space-end #x201ff000) (def!constant dynamic-space-start #x60000000) - (def!constant dynamic-space-end #x98000000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x98000000)) ;; In CMUCL: 0xB0000000->0xB1000000 (def!constant linkage-table-space-start #x20200000) @@ -280,7 +280,7 @@ (def!constant static-space-end #x041ff000) (def!constant dynamic-space-start #x10000000) - (def!constant dynamic-space-end #x6ffff000) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x6ffff000)) (def!constant linkage-table-space-start #x04200000) (def!constant linkage-table-space-end #x042ff000)) |
| Thread | Author | Date |
|---|---|---|
| [Sbcl-commits] CVS: sbcl/src/compiler/x86 parms.lisp,1.77,1.78 | Nikodemus Siivola <demoss@us...> |