Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/cross-boot.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
(alexandria:define-constant sys.int::lambda-list-keywords
'(&allow-other-keys &aux &body &environment &key &optional &rest &whole sys.int::&closure)
:test 'equal)
(defvar sys.int::*features* '(:unicode :little-endian :mezzano :ieee-floating-point :ansi-cl :common-lisp))
(defvar sys.int::*features* '(:unicode :little-endian :mezzano :ieee-floating-point :ansi-cl :common-lisp :64-bit))

;; Replicated from system/package.lisp. Needed to define packages in package.lisp
(in-package :mezzano.internals)
Expand Down
3 changes: 2 additions & 1 deletion system/cold-start.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ structures to exist, and for memory to be allocated, but not much beyond that."
:mezzano
:ieee-floating-point
:ansi-cl
:common-lisp)
:common-lisp
:64-bit)
*macroexpand-hook* 'funcall
most-positive-fixnum #.(- (expt 2 (- 64 +n-fixnum-bits+ 1)) 1)
most-negative-fixnum #.(- (expt 2 (- 64 +n-fixnum-bits+ 1)))
Expand Down