Changeset 4996


Ignore:
Timestamp:
Aug 22, 2006, 12:50:10 AM (18 years ago)
Author:
Gary Byers
Message:

:DARWINX8664 stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/compile-ccl.lisp

    r4847 r4996  
    206206             '(ppc-error-signal ppc-trap-support
    207207               ppc-threads-utils ppc-callback-support))
    208             ((:linuxx8664 :freebsdx8664)
     208            ((:linuxx8664 :freebsdx8664 :darwinx8664)
    209209             '(x86-error-signal x86-trap-support
    210210               x86-threads-utils x86-callback-support)))))
     
    429429    (:linuxppc64 "ppc-boot64")
    430430    (:linuxx8664 "x86-boot64")
    431     (:freebsdx8664 "fx86-boot64")))
     431    (:freebsdx8664 "fx86-boot64")
     432    (:darwinx8664 "x86-boot64.image")))
    432433
    433434(defun standard-kernel-name (&optional (target (backend-name *host-backend*)))
     
    438439    (:linuxppc64 "ppccl64")
    439440    (:linuxx8664 "lx86cl64")
    440     (:freebsdx8664 "fx86cl64")))
     441    (:freebsdx8664 "fx86cl64")
     442    (:darwinx8664 "dx86cl64")))
    441443
    442444(defun standard-image-name (&optional (target (backend-name *host-backend*)))
     
    447449    (:linuxppc64 "PPCCL64")
    448450    (:linuxx8664 "LX86CL64")
    449     (:freebsdx8664 "FX86CL64")))
     451    (:freebsdx8664 "FX86CL64")
     452    (:darwinx8664 "dx86cl64.image")))
    450453
    451454(defun kernel-build-directory (&optional (target (backend-name *host-backend*)))
     
    456459    (:linuxppc64 "linuxppc64")
    457460    (:linuxx8664 "linuxx8664")
    458     (:freebsdx8664 "freebsdx8664")))
     461    (:freebsdx8664 "freebsdx8664")
     462    (:darwinx8664 "darwinx8664")))
    459463
    460464(defun rebuild-ccl (&key full clean kernel force (reload t) exit reload-arguments)
Note: See TracChangeset for help on using the changeset viewer.