X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=build-order.lisp-expr;h=afc27701ad24f8e6d46091e4ea322972498964fc;hb=HEAD;hp=3c55c3ba181c3557e7b533b910882382cad183ff;hpb=41248d63da1344119f74305c887b0e5db0263ebb;p=sbcl.git diff --git a/build-order.lisp-expr b/build-order.lisp-expr index 3c55c3b..afc2770 100644 --- a/build-order.lisp-expr +++ b/build-order.lisp-expr @@ -119,7 +119,7 @@ ("src/code/parse-defmacro") ; on host for PARSE-DEFMACRO ("src/compiler/deftype") ; on host for SB!XC:DEFTYPE ("src/compiler/defconstant") - ("src/code/early-alieneval") ; for vars needed both at build and run time + ("src/code/early-alieneval") ; for funs and vars needed at build and run time ("src/code/specializable-array") @@ -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 @@ -467,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 @@ -515,6 +518,7 @@ ("src/compiler/float-tran") ("src/compiler/saptran") ("src/compiler/srctran") + ("src/compiler/bitops-derive-type") ("src/compiler/generic/vm-tran") ("src/compiler/locall") ("src/compiler/dfo") @@ -547,6 +551,8 @@ ("src/compiler/target/move") ("src/compiler/target/float") + #!+sb-simd-pack + ("src/compiler/target/simd-pack") ("src/compiler/target/sap") ("src/compiler/target/system") ("src/compiler/target/char") @@ -570,10 +576,12 @@ ;; x compilation, for now we blithely ignore them and press on to more ;; x pressing problems. Someday, though, it would be nice to figure out ;; x what the problem is and fix it. - #!+(or ppc sparc) :ignore-failure-p) + #!+(or ppc) :ignore-failure-p) ("src/code/cross-modular" :not-target) - ("src/compiler/target/subprim") + ("src/compiler/target/type-vops") + + ("src/compiler/target/subprim") ("src/compiler/target/debug") ;; src/compiler/sparc/c-call contains a deftransform for ;; %ALIEN-FUNCALL -- CSR @@ -590,7 +598,6 @@ ("src/compiler/generic/array") ("src/compiler/target/pred") - ("src/compiler/target/type-vops") ("src/compiler/generic/late-type-vops") ;; KLUDGE: The assembly files need to be compiled twice: once as @@ -625,6 +632,7 @@ ("src/compiler/represent") ("src/compiler/ir2opt") ("src/compiler/pack") + ("src/compiler/pack-iterative") ("src/compiler/codegen") ("src/compiler/debug") @@ -653,12 +661,16 @@ ("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" ("src/code/target-pathname" :not-host) ; needs "code/pathname" - ("src/code/unix-pathname" :not-host) - ("src/code/win32-pathname" :not-host) + #!-win32 + ("src/code/unix-pathname" :not-host) + #!+win32 + ("src/code/win32-pathname" :not-host) ("src/code/filesys" :not-host) ; needs HOST from "code/pathname" ("src/code/save" :not-host) ; uses the definition of PATHNAME @@ -693,6 +705,8 @@ #!+sb-unicode ("src/code/external-formats/enc-win" :not-host) #!+sb-unicode + ("src/code/external-formats/enc-mac" :not-host) + #!+sb-unicode ("src/code/external-formats/mb-util" :not-host) #!+sb-unicode ("src/code/external-formats/enc-cn-tbl" :not-host) @@ -746,6 +760,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