sbcl dynamic-space-size patch

Dec 02, 2008 23:36

Дополнительно предыдущему посту про sbcl: патч, чтоб не надо было все время --dynamic-space-size указывать при запуске:

--- src/compiler/x86/parms.lisp~ 2008-12-02 23:34:31.545567622 +0300
+++ src/compiler/x86/parms.lisp 2008-12-02 23:34:55.259345490 +0300
@@ -218,7 +218,7 @@
(def!constant static-space-end #x011ff000)

(def!constant dynamic-space-start #x58000000)
- (def!constant dynamic-space-end #x98000000)
+ (def!constant dynamic-space-end #x78000000)

(def!constant linkage-table-space-start #x01200000)
(def!constant linkage-table-space-end #x012ff000))

code, patch, sbcl

Previous post Next post
Up