From f1bfc1a57bd576e191574b9f42d7610813195e19 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Fri, 12 Aug 2005 11:57:24 +0000 Subject: [PATCH] ;;; This is the master value for LISP-IMPLEMENTATION-VERSION. It's ;;; separated into its own file here so that it's easy for ;;; text-munging make-ish or cvs-ish scripts to find and tweak it. For ;;; the convenience of such scripts, only a simple subset of Lisp ;;; reader syntax should be used here: semicolon-delimited comments, ;;; possible blank lines or other whitespace, and a single ;;; double-quoted string value alone on its own line. ;;; ;;; ANSI says LISP-IMPLEMENTATION-VERSION can be NIL "if no ;;; appropriate and relevant result can be produced", but as long as ;;; we control the build, we can always assign an appropriate and ;;; relevant result, so this must be a string, not NIL. ;;; ;;; Conventionally a string like "0.6.6", with three numeric fields, ;;; is used for released versions, and a string like "0.6.5.xyzzy", ;;; with something arbitrary in the fourth field, is used for CVS ;;; 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".) "0.9.3.47" --- src/compiler/ppc/parms.lisp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/compiler/ppc/parms.lisp b/src/compiler/ppc/parms.lisp index 51b9474..c4ea36c 100644 --- a/src/compiler/ppc/parms.lisp +++ b/src/compiler/ppc/parms.lisp @@ -90,14 +90,21 @@ (def!constant static-space-start #x08000000) (def!constant static-space-end #x097fff00) -;;; nothing _seems_ to be using these addresses -(def!constant dynamic-0-space-start #x10000000) -(def!constant dynamic-0-space-end #x3ffff000) -(def!constant dynamic-1-space-start #x40000000) -(def!constant dynamic-1-space-end #x6ffff000) +#!+linux +(progn + (def!constant dynamic-0-space-start #x40000000) + (def!constant dynamic-0-space-end #x47fff000) + (def!constant dynamic-1-space-start #x48000000) + (def!constant dynamic-1-space-end #x4ffff000)) #!+darwin (progn + ;;; nothing _seems_ to be using these addresses + (def!constant dynamic-0-space-start #x10000000) + (def!constant dynamic-0-space-end #x3ffff000) + (def!constant dynamic-1-space-start #x40000000) + (def!constant dynamic-1-space-end #x6ffff000) + (def!constant linkage-table-space-start #x0a000000) (def!constant linkage-table-space-end #x0b000000) (def!constant linkage-table-entry-size 16)) -- 1.7.10.4