Fix a few problems with the AMD64 merge.
* Fix genesis of double-floats on 32-bit little-endian platforms.
* Remove Makefile kludge for forcing shared libraries in contribs
to use the 32-bit mode on AMD64.
* Remove extra argument to MY-MAKE-WIRED-TN in x86-64/c-call.lisp
(prevented using CMUCL as host, since it gives a full warning).
* Add a NEWS entry for the new port.
changes in sbcl-0.8.19 relative to sbcl-0.8.18:
+ * new port: SBCL now works in native 64-bit mode on x86-64/Linux
+ platform. The port supports 61-bit fixnums and large memory spaces.
* enhancement: saving cores with foreign code loaded is now
supported on ppc/Darwin in addition to the previously supported
platforms.
# ones as dependencies.
UNAME:=$(shell uname -m)
-ifeq (x86_64,$(UNAME))
- export EXTRA_LDFLAGS=-m32 -shared
- export EXTRA_CFLAGS+=-m32
-endif
export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS
(ecase sb!c:*backend-byte-order*
(:little-endian
(write-wordindexed address index low-bits)
- (write-wordindexed address index high-bits))
+ (write-wordindexed address (1+ index) high-bits))
(:big-endian
(write-wordindexed address index high-bits)
(write-wordindexed address (1+ index) low-bits)))))
(declare (ignore type))
(let ((num-results (result-state-num-results state)))
(setf (result-state-num-results state) (1+ num-results))
- (my-make-wired-tn 'single-float 'single-reg num-results 2)))
+ (my-make-wired-tn 'single-float 'single-reg num-results)))
(define-alien-type-method (values :result-tn) (type state)
(let ((values (alien-values-type-values type)))
;;; 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.8.18.14"
+"0.8.18.15"