master: Change static space address for darwin-arm64
stassats via Sbcl-commits <[email protected]> Tue, 09 Jun 2026 18:15:51 +0000
| Newsgroups | gmane.lisp.steel-bank.cvs |
|---|---|
| Message-ID | <[email protected]> |
The branch "master" has been updated in SBCL:
via 4336f7a1a4f15b2e83bc6b0b711f2eb66fad502d (commit)
from b0916688cbced286faa4b5cf804961655d3880e2 (commit)
- Log -----------------------------------------------------------------
commit 4336f7a1a4f15b2e83bc6b0b711f2eb66fad502d
Author: Stas Boukarev <[email protected]>
Date: Tue Jun 9 20:55:32 2026 +0300
Change static space address for darwin-arm64
The latest macOS can't mmap there.
Fixes lp#2156072
---
src/compiler/arm64/parms.lisp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/compiler/arm64/parms.lisp b/src/compiler/arm64/parms.lisp
index 3e8518903..e6f6dd4f9 100644
--- a/src/compiler/arm64/parms.lisp
+++ b/src/compiler/arm64/parms.lisp
@@ -71,7 +71,7 @@
(gc-space-setup #+(or linux openbsd netbsd freebsd win32)
#x2F0000000
- #+darwin #x300000000
+ #+darwin #x7000000000
#-darwin :read-only-space-size #-darwin 0
:fixedobj-space-start 0
:fixedobj-space-size 0
@@ -79,7 +79,7 @@
:text-space-size #.(* 2 65536 1024)
:dynamic-space-start
#-darwin #x1000000000
- #+darwin #x7003000000)
+ #+darwin #x8003000000)
(defconstant alien-linkage-table-growth-direction :up)
(defconstant alien-linkage-table-entry-size 16)
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL