Changeset 4973


Ignore:
Timestamp:
Aug 20, 2006, 4:10:32 PM (18 years ago)
Author:
Gary Byers
Message:

:darwinx8664 stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/xdump/xx8664-fasload.lisp

    r4839 r4973  
    9595(add-xload-backend *x8664-freebsd-xload-backend*)
    9696
     97(defparameter *x8664-darwin-xload-backend*
     98  (make-backend-xload-info
     99   :name  :darwinx8664
     100   :macro-apply-code-function 'x8664-fixup-macro-apply-code
     101   :closure-trampoline-code *x8664-closure-trampoline-code*
     102   :udf-code *x8664-udf-code*
     103   :default-image-name "ccl:ccl;x86-boot64.image"
     104   :default-startup-file-name "level-1.dx64fsl"
     105   :subdirs '("ccl:level-0;X86;X8664;" "ccl:level-0;X86;")
     106   :compiler-target-name :linuxx8664
     107   :image-base-address #x300000000000
     108   :nil-relative-symbols x86::*x86-nil-relative-symbols*
     109   :static-space-init-function 'x8664-initialize-static-space
     110     
     111))
     112
     113(add-xload-backend *x8664-darwin-xload-backend*)
     114
    97115#+x8664-target
    98116(progn
     
    100118  (setq *xload-default-backend* *x8664-linux-xload-backend*)
    101119  #+freebsd-target
    102   (setq *xload-default-backend* *x8664-freebsd-xload-backend*))
     120  (setq *xload-default-backend* *x8664-freebsd-xload-backend*)
     121  #+darwin-target
     122  (setq *xload-default-backend* *x8664-darwin-xload-backend*))
    103123
    104124
Note: See TracChangeset for help on using the changeset viewer.