From 0a90de212b03a5505af6229229b07e04d6ce0b05 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 4 Jul 2008 16:10:05 +0000 Subject: [PATCH] 1.0.18.12: adjust address-spaces for Windows 64 * Thanks to John Connors if this works, blame me if it doesn't (untested, as I don't have a Windows box available, but reputedly this should be good for both Win32 and Win64.) Source: http://article.gmane.org/gmane.lisp.steel-bank.devel/10686 --- src/compiler/x86/parms.lisp | 16 ++++++++-------- version.lisp-expr | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/compiler/x86/parms.lisp b/src/compiler/x86/parms.lisp index 67655cd8a..eebbe55b0 100644 --- a/src/compiler/x86/parms.lisp +++ b/src/compiler/x86/parms.lisp @@ -169,17 +169,17 @@ #!+win32 (progn - (def!constant read-only-space-start #x02000000) - (def!constant read-only-space-end #x020ff000) + (def!constant read-only-space-start #x22000000) + (def!constant read-only-space-end #x220ff000) - (def!constant static-space-start #x02100000) - (def!constant static-space-end #x021ff000) + (def!constant static-space-start #x22100000) + (def!constant static-space-end #x221ff000) - (def!constant dynamic-space-start #x09000000) - (def!constant dynamic-space-end #x29000000) + (def!constant dynamic-space-start #x22300000) + (def!constant dynamic-space-end #x60000000) - (def!constant linkage-table-space-start #x02200000) - (def!constant linkage-table-space-end #x022ff000)) + (def!constant linkage-table-space-start #x22200000) + (def!constant linkage-table-space-end #x222ff000)) #!+linux (progn diff --git a/version.lisp-expr b/version.lisp-expr index 4fb7061fa..b95ecb46d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.18.11" +"1.0.18.12" -- 2.11.4.GIT