X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=build-order.lisp-expr;h=d622fc82e1ace7971163e9511a823b9e267ebb53;hb=81ce38f2e03e4f569d7a95bb18efb25bb16fc269;hp=22b64114e51fcbb161251a3cf2551faf7c51a6b7;hpb=1e9966d5f24709d227e20911b4e1ddd27c87a00e;p=sbcl.git diff --git a/build-order.lisp-expr b/build-order.lisp-expr index 22b6411..d622fc8 100644 --- a/build-order.lisp-expr +++ b/build-order.lisp-expr @@ -75,15 +75,19 @@ ("src/code/cross-misc" :not-target) ("src/code/cross-char" :not-target) ("src/code/cross-byte" :not-target) + ("src/code/cross-boole" :not-target) ("src/code/cross-float" :not-target) ("src/code/cross-io" :not-target) ("src/code/cross-sap" :not-target) + ("src/code/cross-thread" :not-target) ("src/code/cross-make-load-form" :not-target) + ("src/code/cross-condition" :not-target) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; stuff needed early both in cross-compilation host and in target Lisp ("src/code/uncross") + ("src/code/primordial-type") ("src/code/early-defbangmethod") ("src/code/defbangtype") @@ -97,9 +101,9 @@ ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others + ("src/compiler/target/parms") ("src/compiler/generic/early-vm") ("src/compiler/generic/early-objdef") - ("src/compiler/target/parms") ("src/code/early-array") ; needs "early-vm" numbers ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc. @@ -117,6 +121,7 @@ ;; mostly needed by stuff from comcom, but also used by "x86-vm" ("src/code/debug-var-io") + ("src/code/early-thread") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; basic machinery for the target Lisp. Note that although most of these ;;; files are flagged :NOT-HOST, a few might not be. @@ -129,6 +134,9 @@ ("src/code/target-extensions" :not-host) + ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR. + ("src/code/early-package" :not-host) + ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs ("src/code/defbangstruct") @@ -158,6 +166,7 @@ ("src/code/target-error" :not-host) + ("src/compiler/early-backend") ;; a comment from classic CMU CL: ;; "These guys can supposedly come in any order, but not really. ;; Some are put at the end so that macros don't run interpreted @@ -187,7 +196,8 @@ ("src/code/misc-aliens" :not-host) ("src/code/array" :not-host) - ("src/code/target-sxhash" :not-host) + ("src/code/early-float" :not-host) + ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants ("src/code/list" :not-host) ("src/code/seq" :not-host) ; "code/seq" should come after "code/list". @@ -222,6 +232,7 @@ #!+sparc ("src/code/sparc-vm" :not-host) #!+hppa ("src/code/hppa-vm" :not-host) #!+x86 ("src/code/x86-vm" :not-host) + #!+x86-64("src/code/x86-64-vm" :not-host) #!+ppc ("src/code/ppc-vm" :not-host) #!+alpha ("src/code/alpha-vm" :not-host) #!+mips ("src/code/mips-vm" :not-host) @@ -412,6 +423,7 @@ ("src/code/hash-table") ("src/code/readtable") ("src/code/pathname") + ("src/code/host-pprint") ("src/compiler/lexenv") ;; KLUDGE: Much stuff above here is the type system and/or the INFO @@ -441,10 +453,13 @@ ;; (and so that they don't cause lots of annoying compiler warnings ;; about undefined types). ("src/compiler/generic/core") - ("src/code/cross-thread" :not-target) ("src/code/thread") ("src/code/load") + #!+linkage-table ("src/code/linkage-table" :not-host) + #!+os-provides-dlopen ("src/code/foreign-load" :not-host) + ("src/code/foreign") + ("src/code/fop") ; needs macros from code/load.lisp ("src/compiler/ctype") @@ -462,9 +477,11 @@ ("src/compiler/ir1tran") ("src/compiler/ir1tran-lambda") ("src/compiler/ir1-translators") + ("src/compiler/ir1-step") ("src/compiler/ir1util") ("src/compiler/ir1report") ("src/compiler/ir1opt") + ("src/compiler/loop") ("src/compiler/ir1final") ("src/compiler/array-tran") @@ -512,10 +529,25 @@ ("src/compiler/target/memory") ("src/compiler/target/static-fn") ("src/compiler/target/arith" - ;; KLUDGE: for ppc and sparc this appears to be necessary -- see the - ;; comment below regarding src/compiler/target/array -- CSR, - ;; 2002-05-05 - :ignore-failure-p) + ;; KLUDGE: for ppc and sparc this appears to be necessary, as it + ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's + ;; patch for that architecture was finally committed + ;; + ;; old (0.8.5.23) comment on the array-VOP hack for X86: + ;; x Compiling this file for X86 raises alarming warnings of + ;; x the form + ;; x Argument FOO to VOP CHECK-BOUND has SC restriction + ;; x DESCRIPTOR-REG which is not allowed by the operand type: + ;; x (:OR POSITIVE-FIXNUM) + ;; x This seems not to be something that I broke, but rather a "feature" + ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling + ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though + ;; x these warnings are severe enough that they would ordinarily abort + ;; 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) + ("src/code/cross-modular" :not-target) ("src/compiler/target/subprim") ("src/compiler/target/debug") @@ -530,21 +562,7 @@ ("src/compiler/target/nlx") ("src/compiler/generic/late-nlx") ("src/compiler/target/show") - ("src/compiler/target/array" - ;; KLUDGE: Compiling this file for X86 raises alarming warnings of - ;; the form - ;; Argument FOO to VOP CHECK-BOUND has SC restriction - ;; DESCRIPTOR-REG which is not allowed by the operand type: - ;; (:OR POSITIVE-FIXNUM) - ;; This seems not to be something that I broke, but rather a "feature" - ;; inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling - ;; Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though - ;; these warnings are severe enough that they would ordinarily abort - ;; compilation, for now we blithely ignore them and press on to more - ;; pressing problems. Someday, though, it would be nice to figure out - ;; what the problem is and fix it. (See the comments in - ;; src/compiler/x86/array for a candidate patch.) -- WHN 19990323 - :ignore-failure-p) + ("src/compiler/target/array") ("src/compiler/generic/array") ("src/compiler/target/pred") @@ -612,16 +630,15 @@ ("src/code/target-random" :not-host) ; needs "code/random" ("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/filesys" :not-host) ; needs HOST from "code/pathname" ("src/code/save" :not-host) ; uses the definition of PATHNAME ; from "code/pathname" ("src/code/sharpm" :not-host) ; uses stuff from "code/reader" + ("src/code/alloc" :not-host) - #!+sb-thread ("src/code/target-thread" :not-host) - #!-sb-thread - ("src/code/target-unithread" :not-host) ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp ("src/code/gc" :not-host) ("src/code/purify" :not-host) @@ -633,6 +650,12 @@ ("src/code/debug" :not-host) + ("src/code/octets" :not-host) + #!+sb-unicode + ("src/code/eucjp" :not-host) + #!+sb-unicode + ("src/code/koi8-r" :not-host) + ;; The code here can't be compiled until CONDITION and ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is ;; declared special.