0.9.1.60:
[sbcl.git] / build-order.lisp-expr
index 3b5b727..73e8444 100644 (file)
@@ -81,6 +81,7 @@
  ("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
 
  ;; 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.
 
  ("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")
  #!+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)
  ("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")
  ("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")
   ;; 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")
  ("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)
 
  ("src/code/debug" :not-host)
 
+ ("src/code/octets" :not-host)
+ #!+sb-unicode
+ ("src/code/eucjp" :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.