Changeset 4829


Ignore:
Timestamp:
Jun 27, 2006, 3:38:54 AM (18 years ago)
Author:
Gary Byers
Message:

Some FreeBSD support.

File:
1 edited

Legend:

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

    r4409 r4829  
    206206             '(ppc-error-signal ppc-trap-support
    207207               ppc-threads-utils ppc-callback-support))
    208             ((:linuxx8664 :freebsd86664)
     208            ((:linuxx8664 :freebsdx8664)
    209209             '(x86-error-signal x86-trap-support
    210210               x86-threads-utils x86-callback-support)))))
     
    428428    (:darwinppc64 "ppc-boot64.image")
    429429    (:linuxppc64 "ppc-boot64")
    430     (:linuxx8664 "x86-boot64")))
     430    (:linuxx8664 "x86-boot64")
     431    (:freebsdx8664 "fx86-boot64")))
    431432
    432433(defun standard-kernel-name (&optional (target (backend-name *host-backend*)))
     
    436437    (:darwinppc64 "dppccl64")
    437438    (:linuxppc64 "ppccl64")
    438     (:linuxx8664 "lx86cl64")))
     439    (:linuxx8664 "lx86cl64")
     440    (:freebsdx8664 "fx86cl64")))
    439441
    440442(defun standard-image-name (&optional (target (backend-name *host-backend*)))
     
    444446    (:darwinppc64 "dppccl64.image")
    445447    (:linuxppc64 "PPCCL64")
    446     (:linuxx8664 "LX86CL64")))
     448    (:linuxx8664 "LX86CL64")
     449    (:freebsdx8664 "FX86CL64")))
    447450
    448451(defun kernel-build-directory (&optional (target (backend-name *host-backend*)))
     
    452455    (:darwinppc64 "darwinppc64")
    453456    (:linuxppc64 "linuxppc64")
    454     (:linuxx8664 "linuxx8664")))
     457    (:linuxx8664 "linuxx8664")
     458    (:freebsdx8664 "freebsd8664")))
    455459
    456460(defun rebuild-ccl (&key full clean kernel force (reload t) exit reload-arguments)
Note: See TracChangeset for help on using the changeset viewer.