X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=build-order.lisp-expr;h=af5c47214fc337ab652480b585a900ed5d6d73da;hb=597826f00530e8d0c6f4a8ccda2e366f56b65579;hp=cf688577ff5398b894dc8a01f72f77b5bf21c370;hpb=d442c23da9851beac541b8bddfc2c0837cb87309;p=sbcl.git diff --git a/build-order.lisp-expr b/build-order.lisp-expr index cf68857..af5c472 100644 --- a/build-order.lisp-expr +++ b/build-order.lisp-expr @@ -204,6 +204,7 @@ ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval. ("src/code/misc-aliens" :not-host) + ("src/compiler/generic/vm-array") ("src/code/array" :not-host) ("src/code/early-float" :not-host) ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants @@ -359,7 +360,6 @@ ;; in class.lisp. ("src/code/condition" :not-host) - ("src/compiler/generic/vm-array") ("src/compiler/generic/primtype") ;; the implementation of the compiler-affecting part of forms like @@ -367,16 +367,12 @@ ;; defining types ("src/compiler/parse-lambda-list") - ;; The following two files trigger function/macro redefinition - ;; warnings in clisp during make-host-2; as a workaround, we ignore - ;; the failure values from COMPILE-FILE under clisp. - ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp - ("src/code/host-alieneval" #+clisp :ignore-failure-p) + ("src/code/host-alieneval") ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in ;; host-alieneval.lisp - ("src/code/host-c-call" #+clisp :ignore-failure-p) + ("src/code/host-c-call") ;; SB!XC:DEFTYPE is needed in order to compile late-type ;; in the host Common Lisp, and in order to run, it needs @@ -471,6 +467,9 @@ ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp. ("src/compiler/early-assem") + ;; This has the BARRIER stuff that the threading support needs. + ("src/code/barrier") + ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp" ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this ;; before "compiler/main.lisp" so that those can be coded efficiently @@ -657,6 +656,8 @@ ("src/code/target-sap" :not-host) ; uses SAP-INT type ("src/code/target-package" :not-host) ; needs "code/package" ("src/code/target-random" :not-host) ; needs "code/random" + ("src/code/bignum-random" :not-host) ; needs "code/random" and + ; "code/bignum" ("src/code/target-hash-table" :not-host) ; needs "code/hash-table" ("src/code/reader" :not-host) ; needs "code/readtable" ("src/code/target-stream" :not-host) ; needs WHITESPACEP from "code/reader" @@ -686,6 +687,7 @@ ("src/code/debug" :not-host) ("src/code/octets" :not-host) + ("src/code/external-formats/enc-basic" :not-host) ("src/code/external-formats/enc-ebcdic" :not-host) #!+sb-unicode ("src/code/external-formats/enc-cyr" :not-host) @@ -706,7 +708,9 @@ #!+sb-unicode ("src/code/external-formats/enc-jpn" :not-host) #!+sb-unicode - ("src/code/external-formats/ucs-2" :not-host) + ("src/code/external-formats/enc-ucs" :not-host) + #!+sb-unicode + ("src/code/external-formats/enc-utf" :not-host) ;; The code here can't be compiled until CONDITION and ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is @@ -747,6 +751,8 @@ ("src/code/macros") ("src/code/loop") ("src/code/late-setf") + ("src/code/cas") + ("src/code/late-cas") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; other target-code-building stuff which can't be processed until