0.9.10.1: Unicode character names -- aka More Bloat
[sbcl.git] / build-order.lisp-expr
1 ;;;; -*- Lisp -*-
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 ;;; a linear ordering of system sources which works both to
13 ;;; compile/load the cross-compiler under the host Common Lisp and
14 ;;; then to cross-compile the complete system into the
15 ;;; under-construction target SBCL
16 ;;;
17 ;;; The keyword flags (:NOT-HOST, :NOT-TARGET, :ASSEM...) are
18 ;;; documented in the code which implements their effects. (As of
19 ;;; sbcl-0.7.10, the comments are on DEFPARAMETER *EXPECTED-STEM-FLAGS*
20 ;;; in src/cold/shared.lisp.)
21 ;;;
22 ;;; Of course, it'd be very nice to have this be a dependency DAG
23 ;;; instead, so that we could do automated incremental recompilation.
24 ;;; But the dependencies are varied and subtle, and it'd be extremely
25 ;;; difficult to extract them automatically, and it'd be extremely
26 ;;; tedious and error-prone to extract them manually, so we don't
27 ;;; extract them. (It would be nice to fix this someday. The most
28 ;;; feasible approach that I can think of would be to make the
29 ;;; dependencies work on a package level, not an individual file
30 ;;; level. Doing it at the package level would make the granularity
31 ;;; coarse enough that it would probably be pretty easy to maintain
32 ;;; the dependency information manually, and the brittleness of the
33 ;;; package system would help make most violations of the declared
34 ;;; dependencies obvious at build time. -- WHN 20000803
35 (
36  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
37  ;;; miscellaneous
38
39  ;; This comes early because it's useful for debugging everywhere.
40  ("src/code/show")
41
42  ;; This comes as early as possible, so that we catch the source locations
43  ;; for everything.
44  ("src/code/early-source-location")
45
46  ;; This comes early because the cross-compilation host's backquote
47  ;; logic can expand into something which can't be executed on the
48  ;; target Lisp (e.g. in CMU CL where it expands into internal
49  ;; functions like BACKQ-LIST), and by replacing the host backquote
50  ;; logic with our own as early as possible, we minimize the chance of
51  ;; any forms referring to cross-compilation host internal functions
52  ;; leaking into target SBCL code.
53  ("src/code/backq")
54
55  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
56  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
57  ;; of CL special binding when the variable is undeclared.
58  ("src/code/globals" :not-host)
59
60  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
61  ;; various DEFSETFs and/or other DEFMACROish things, defined as early as
62  ;; possible so we don't need to fiddle with any subtleties of defining them
63  ;; before any possible use
64
65  ;; KLUDGE: It would be nice to reimplement most or all of these as
66  ;; functions (possibly inlined functions) so that we wouldn't need to
67  ;; worry so much about forcing them all to be defined before any possible
68  ;; use. It might be pretty tedious, though, working through any
69  ;; transforms and translators and optimizers and so forth to make sure
70  ;; that they can handle the change. -- WHN 19990919
71  ("src/code/defsetfs")
72
73  ("src/code/cold-init-helper-macros")
74
75  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
76  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
77  ;;; supplied by basic machinery
78
79  ("src/code/cross-misc"  :not-target)
80  ("src/code/cross-char"  :not-target)
81  ("src/code/cross-byte"  :not-target)
82  ("src/code/cross-boole" :not-target)
83  ("src/code/cross-float" :not-target)
84  ("src/code/cross-io"    :not-target)
85  ("src/code/cross-sap"   :not-target)
86  ("src/code/cross-thread" :not-target)
87  ("src/code/cross-make-load-form" :not-target)
88  ("src/code/cross-condition" :not-target)
89
90  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
91  ;;; stuff needed early both in cross-compilation host and in target Lisp
92
93  ("src/code/uncross")
94  ("src/code/primordial-type")
95  ("src/code/early-defbangmethod")
96
97  ("src/code/defbangtype")
98  ("src/code/defbangmacro")
99  ("src/code/defbangconstant")
100
101  ("src/code/primordial-extensions")
102
103  ;; comes early so that stuff can reason about function names
104  ("src/code/function-names")
105
106  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
107  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
108  ("src/compiler/target/parms")
109  ("src/compiler/generic/early-vm")
110  ("src/compiler/generic/early-objdef")
111  ("src/code/early-array") ; needs "early-vm" numbers
112
113  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
114  ("src/code/parse-body")       ; on host for PARSE-BODY
115  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
116  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
117  ("src/compiler/defconstant")
118  ("src/code/early-alieneval")  ; for vars needed both at build and run time
119
120  ("src/code/specializable-array")
121
122  ("src/code/early-cl")
123  ("src/code/early-fasl")
124
125  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
126  ("src/code/debug-var-io")
127
128  ("src/code/early-thread")
129  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
130  ;;; basic machinery for the target Lisp. Note that although most of these
131  ;;; files are flagged :NOT-HOST, a few might not be.
132
133  ("src/code/target-defbangmethod" :not-host)
134
135  ("src/code/early-print" :not-host)
136  ("src/code/early-pprint" :not-host)
137  ("src/code/early-impl" :not-host)
138
139  ("src/code/target-extensions" :not-host)
140
141  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
142  ("src/code/early-package" :not-host)
143
144  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
145
146  ("src/code/defbangstruct")
147
148  ("src/code/unportable-float")
149
150  ("src/code/funutils" :not-host)
151
152  ;; This needs DEF!STRUCT, and is itself needed early so that structure
153  ;; accessors and inline functions defined here can be compiled inline
154  ;; later. (Avoiding full calls not only increases efficiency, but also
155  ;; avoids some cold init issues involving full calls to structure
156  ;; accessors.)
157  ("src/code/type-class")
158
159  ("src/code/early-pcounter")
160  ("src/code/pcounter" :not-host)
161
162  ("src/code/ansi-stream" :not-host)
163
164  ("src/code/sysmacs" :not-host)
165
166  ;; "assembly/assemfile" was here in the sequence inherited from
167  ;; CMU CL worldcom.lisp, but also appears later in the sequence
168  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
169  ;; so I've deleted the one here. -- WHN 19990620
170
171  ("src/code/target-error" :not-host)
172
173  ("src/compiler/early-backend")
174  ;; a comment from classic CMU CL:
175  ;;   "These guys can supposedly come in any order, but not really.
176  ;;    Some are put at the end so that macros don't run interpreted
177  ;;    and stuff."
178  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
179  ;; FIXME: more informative and up-to-date comment?
180  ("src/code/kernel"      :not-host)
181  ("src/code/toplevel"    :not-host)
182  ("src/code/cold-error"  :not-host)
183  ("src/code/fdefinition" :not-host)
184  ;; FIXME: Figure out some way to make the compiler macro for INFO
185  ;; available for compilation of "code/fdefinition".
186
187  ;; In classic CMU CL, code/type was here. I've since split that into
188  ;; lots of smaller pieces, some of which are here and some of which
189  ;; are handled later in the sequence, when the cross-compiler is
190  ;; built. -- WHN 19990620
191  ("src/code/target-type" :not-host)
192
193  ("src/code/pred" :not-host)
194
195  ("src/code/target-alieneval" :not-host)
196  ("src/code/target-c-call"    :not-host)
197  ("src/code/target-allocate"  :not-host)
198
199  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
200  ("src/code/misc-aliens" :not-host)
201
202  ("src/code/array"         :not-host)
203  ("src/code/early-float"   :not-host)
204  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
205
206  ("src/code/list"   :not-host)
207  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
208  ("src/code/coerce" :not-host)
209
210  ("src/code/string"     :not-host)
211  ("src/code/mipsstrops" :not-host)
212
213  ;; "src/code/unix.lisp" needs this. It's generated automatically by
214  ;; grovel_headers.c, i.e. it's not in CVS.
215  ("output/stuff-groveled-from-headers" :not-host)
216
217  ("src/code/unix" :not-host)
218  #!+win32 ("src/code/win32" :not-host)
219
220  #!+mach  ("src/code/mach"     :not-host)
221  #!+mach  ("src/code/mach-os"  :not-host)
222  #!+sunos ("src/code/sunos-os" :not-host)
223  #!+hpux  ("src/code/hpux-os"  :not-host)
224  #!+osf1  ("src/code/osf1-os"  :not-host)
225  #!+irix  ("src/code/irix-os"  :not-host)
226  #!+bsd   ("src/code/bsd-os"   :not-host)
227  #!+linux ("src/code/linux-os" :not-host)
228  #!+win32 ("src/code/win32-os" :not-host)
229
230  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
231  ;; error args. This file contains stuff previously in
232  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
233  ;; 2002-02-05
234  ("src/code/sc-offset")
235
236  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
237  ;; instead of a bunch of reader macros. -- WHN 19990308
238  #!+sparc ("src/code/sparc-vm" :not-host)
239  #!+hppa  ("src/code/hppa-vm"  :not-host)
240  #!+x86   ("src/code/x86-vm"   :not-host)
241  #!+x86-64("src/code/x86-64-vm"   :not-host)
242  #!+ppc   ("src/code/ppc-vm"   :not-host)
243  #!+alpha ("src/code/alpha-vm" :not-host)
244  #!+mips  ("src/code/mips-vm"  :not-host)
245
246  ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
247  #!+rt    ("src/code/rt-vm"    :not-host)
248
249  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
250  #!+win32 ("src/code/target-exception" :not-host)
251
252  ("src/code/symbol"     :not-host)
253  ("src/code/bignum"     :not-host)
254  ("src/code/numbers"    :not-host)
255  ("src/code/float-trap" :not-host)
256  ("src/code/float"      :not-host)
257  ("src/code/irrat"      :not-host)
258
259  ("src/code/char")
260  ("src/code/huffman")
261  ("src/code/target-char" :not-host)
262  ("src/code/target-misc" :not-host)
263  ("src/code/misc")
264
265  ("src/code/room"   :not-host)
266
267  ("src/code/stream"        :not-host)
268  ("src/code/print"         :not-host)
269  ("src/code/pprint"        :not-host)
270  ("src/code/early-format")
271  ("src/code/target-format" :not-host)
272  ("src/code/defpackage"    :not-host)
273  ("src/code/pp-backq"      :not-host)
274
275  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
276
277  ("src/code/serve-event" :not-host)
278  ("src/code/fd-stream"   :not-host)
279
280  ("src/code/module" :not-host)
281
282  ("src/code/interr" :not-host)
283
284  ("src/code/query"  :not-host)
285
286  ("src/code/sort"  :not-host)
287  ("src/code/time"  :not-host)
288  ("src/code/timer" :not-host)
289  ("src/code/weak"  :not-host)
290  ("src/code/final" :not-host)
291
292  ("src/code/setf-funs" :not-host)
293
294  ("src/code/stubs" :not-host)
295
296  ("src/code/exhaust" :not-host)
297
298  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
299  ;;; compiler (and a few miscellaneous files whose dependencies make it
300  ;;; convenient to stick them here)
301
302  ("src/compiler/early-c")
303  ("src/compiler/policy")
304  ("src/compiler/policies")
305  ("src/code/typedefs")
306
307  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
308
309  ("src/compiler/macros")
310  ("src/compiler/generic/vm-macs")
311
312  ;; needed by "compiler/vop"
313  ("src/compiler/sset")
314
315  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
316  ("src/compiler/node")
317
318  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
319  ("src/compiler/vop")
320
321  ;; needed by "vm" and "primtype"
322  ("src/compiler/backend")
323
324  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
325  ("src/compiler/vmdef")
326
327  ;; needs "backend"
328  ("src/compiler/target/backend-parms")
329
330  ;; for INFO and SB!XC:MACRO-FUNCTION, needed by defmacro.lisp
331  ("src/compiler/globaldb")
332  ("src/compiler/info-functions")
333
334  ("src/code/force-delayed-defbangconstants")
335  ("src/code/defmacro")
336  ("src/code/force-delayed-defbangmacros")
337
338  ("src/compiler/late-macros")
339
340  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
341  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
342  ("src/compiler/meta-vmdef")
343
344  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
345  ("src/compiler/target/vm")
346
347  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
348  ("src/code/early-type")
349
350  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
351  ;; around the compilation of "code/class". Why?
352  ("src/code/class")
353
354  ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
355  ;; in class.lisp.
356  ("src/code/condition" :not-host)
357
358  ("src/compiler/generic/vm-array")
359  ("src/compiler/generic/primtype")
360
361  ;; the implementation of the compiler-affecting part of forms like
362  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
363  ;; defining types
364  ("src/compiler/parse-lambda-list")
365
366  ;; The following two files trigger function/macro redefinition
367  ;; warnings in clisp during make-host-2; as a workaround, we ignore
368  ;; the failure values from COMPILE-FILE under clisp.
369
370  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
371  ("src/code/host-alieneval" #+clisp :ignore-failure-p)
372
373  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
374  ;; host-alieneval.lisp
375  ("src/code/host-c-call" #+clisp :ignore-failure-p)
376
377  ;; SB!XC:DEFTYPE is needed in order to compile late-type
378  ;; in the host Common Lisp, and in order to run, it needs
379  ;; %COMPILER-DEFTYPE.
380  ("src/compiler/compiler-deftype")
381
382  ;; These appear here in the build sequence because they require
383  ;;   * the macro INFO, defined in globaldb.lisp, and
384  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
385  ;; and because they define
386  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
387  ("src/code/late-type")
388  ("src/code/deftypes-for-target")
389
390  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
391  ("src/compiler/knownfun")
392
393  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
394  ("src/compiler/fun-info-funs")
395
396  ;; stuff needed by "code/defstruct"
397  ("src/code/cross-type" :not-target)
398  ("src/compiler/generic/vm-type")
399  ("src/compiler/proclaim")
400
401  ("src/code/class-init")
402  ("src/code/typecheckfuns")
403
404  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
405  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
406  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
407  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
408  ("src/code/defstruct")
409  ("src/code/target-defstruct" :not-host)
410
411  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
412  ;; machinery) before we can set its superclasses here.
413  ("src/code/alien-type")
414
415  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
416  ;; the TYPE= stuff defined in late-type.lisp, and the
417  ;; CHECK-FUN-NAME defined in proclaim.lisp.
418  ("src/code/force-delayed-defbangstructs")
419
420  ("src/code/typep" :not-host)
421
422  ("src/compiler/compiler-error")
423
424  ("src/code/type-init")
425  ;; Now that the type system is initialized, fix up UNKNOWN types that
426  ;; have crept in.
427  ("src/compiler/fixup-type")
428
429  ;; These define target types needed by fndb.lisp.
430  ("src/code/package")
431  ("src/code/random")
432  ("src/code/hash-table")
433  ("src/code/readtable")
434  ("src/code/pathname")
435  ("src/code/host-pprint")
436  ("src/compiler/lexenv")
437
438  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
439  ;; system, not really the compiler proper. It might be easier to
440  ;; understand the system if those things were split off into packages
441  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
442
443  ;; In classic CMU CL (re)build order, these were done later, but
444  ;; in building from scratch, these must be loaded before
445  ;; "compiler/generic/objdef" in order to allow forms like
446  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
447  ("src/compiler/fndb")
448  ("src/compiler/generic/vm-fndb")
449
450  ("src/compiler/generic/objdef")
451
452  ("src/compiler/generic/interr")
453
454  ("src/compiler/bit-util")
455
456  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
457  ("src/compiler/early-assem")
458
459  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
460  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
461  ;; before "compiler/main.lisp" so that those can be coded efficiently
462  ;; (and so that they don't cause lots of annoying compiler warnings
463  ;; about undefined types).
464  ("src/compiler/generic/core")
465  ("src/code/thread")
466  ("src/code/load")
467
468  #!+linkage-table ("src/code/linkage-table" :not-host)
469  #!+(and os-provides-dlopen (not win32)) ("src/code/foreign-load" :not-host)
470  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
471  ("src/code/foreign")
472
473  ("src/code/fop") ; needs macros from code/load.lisp
474
475  ("src/compiler/ctype")
476  ("src/compiler/disassem")
477  ("src/compiler/assem")
478
479  ("src/compiler/trace-table") ; needs EMIT-LABEL macro from compiler/assem.lisp
480
481  ;; Compiling this requires fop definitions from code/fop.lisp and
482  ;; trace table definitions from compiler/trace-table.lisp.
483  ("src/compiler/dump")
484
485  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
486  ("src/code/source-location")
487  ("src/compiler/target-main" :not-host)
488  ("src/compiler/ir1tran")
489  ("src/compiler/ir1tran-lambda")
490  ("src/compiler/ir1-translators")
491  ("src/compiler/ir1-step")
492  ("src/compiler/ir1util")
493  ("src/compiler/ir1report")
494  ("src/compiler/ir1opt")
495  ("src/compiler/loop")
496
497  ("src/compiler/ir1final")
498  ("src/compiler/array-tran")
499  ("src/compiler/seqtran")
500  ("src/compiler/typetran")
501  ("src/compiler/generic/vm-typetran")
502  ("src/compiler/float-tran")
503  ("src/compiler/saptran")
504  ("src/compiler/srctran")
505  ("src/compiler/generic/vm-tran")
506  ("src/compiler/locall")
507  ("src/compiler/dfo")
508  ("src/compiler/checkgen")
509  ("src/compiler/constraint")
510  ("src/compiler/physenvanal")
511
512  ("src/compiler/tn")
513  ("src/compiler/life")
514
515  ("src/code/debug-info")
516
517  ("src/compiler/debug-dump")
518  ("src/compiler/generic/utils")
519  ("src/assembly/assemfile")
520
521  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
522  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
523  ;; the definition of the LOCATION-INFO structure (if structures in
524  ;; the host lisp have setf expanders rather than setf functions).
525  ("src/compiler/late-vmdef")
526
527  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
528
529  ("src/compiler/target/insts")
530  ("src/compiler/target/macros")
531  ("src/compiler/generic/early-type-vops")
532
533  ("src/assembly/target/support")
534
535  ("src/compiler/target/move")
536  ("src/compiler/target/float")
537  ("src/compiler/target/sap")
538  ("src/compiler/target/system")
539  ("src/compiler/target/char")
540  ("src/compiler/target/memory")
541  ("src/compiler/target/static-fn")
542  ("src/compiler/target/arith"
543   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
544   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
545   ;; patch for that architecture was finally committed
546   ;;
547   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
548   ;; x Compiling this file for X86 raises alarming warnings of
549   ;; x the form
550   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
551   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
552   ;; x      (:OR POSITIVE-FIXNUM)
553   ;; x This seems not to be something that I broke, but rather a "feature"
554   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
555   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
556   ;; x these warnings are severe enough that they would ordinarily abort
557   ;; x compilation, for now we blithely ignore them and press on to more
558   ;; x pressing problems. Someday, though, it would be nice to figure out
559   ;; x what the problem is and fix it.
560   #!+(or ppc sparc) :ignore-failure-p)
561  ("src/code/cross-modular"  :not-target)
562  ("src/compiler/target/subprim")
563
564  ("src/compiler/target/debug")
565  ;; src/compiler/sparc/c-call contains a deftransform for
566  ;; %ALIEN-FUNCALL -- CSR
567  ("src/compiler/early-aliencomp")
568  ("src/compiler/target/c-call")
569  ("src/compiler/target/cell")
570  ("src/compiler/target/values")
571  ("src/compiler/target/alloc")
572  ("src/compiler/target/call")
573  ("src/compiler/target/nlx")
574  ("src/compiler/generic/late-nlx")
575  ("src/compiler/target/show")
576  ("src/compiler/target/array")
577  ("src/compiler/generic/array")
578  ("src/compiler/target/pred")
579
580  ("src/compiler/target/type-vops")
581  ("src/compiler/generic/late-type-vops")
582
583  ;; KLUDGE: The assembly files need to be compiled twice: once as
584  ;; normal lisp files, and once by sb-c:assemble-file.  We play some
585  ;; symlink games to make sure we don't scribble over anything we
586  ;; shouldn't, but these are actually the same files:
587
588  ("src/compiler/assembly/target/assem-rtns")
589  ("src/compiler/assembly/target/array")
590  ("src/compiler/assembly/target/arith")
591  ("src/compiler/assembly/target/alloc")
592  ("src/assembly/target/assem-rtns" :assem :not-host)
593  ("src/assembly/target/array"      :assem :not-host)
594  ("src/assembly/target/arith"      :assem :not-host)
595  ("src/assembly/target/alloc"      :assem :not-host)
596
597  ("src/compiler/pseudo-vops")
598
599  ("src/compiler/aliencomp")
600
601  ("src/compiler/ltv")
602  ("src/compiler/gtn")
603  ("src/compiler/ltn")
604  ("src/compiler/stack")
605  ("src/compiler/control")
606  ("src/compiler/entry")
607  ("src/compiler/ir2tran")
608
609  ("src/compiler/generic/vm-ir2tran")
610
611  ("src/compiler/copyprop")
612  ("src/compiler/represent")
613  ("src/compiler/pack")
614  ("src/compiler/codegen")
615  ("src/compiler/debug")
616
617  #!+sb-dyncount ("src/compiler/dyncount")
618  #!+sb-dyncount ("src/code/dyncount")
619
620  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
621  ("src/code/format-time")
622
623  ;; needed by various unhappy-path cases in the cross-compiler
624  ("src/code/error")
625
626  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
627  ;; that Python-as-cross-compiler has turned out to need.
628  ("src/code/macroexpand")
629
630  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
631  ;; files which depend in some way (directly or indirectly) on stuff
632  ;; compiled as part of the compiler
633
634  ("src/code/late-extensions") ; needs condition system
635  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
636                                                 ;   "compiler/generic/core"
637
638  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
639  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
640  ("src/code/target-package"    :not-host) ; needs "code/package"
641  ("src/code/target-random"     :not-host) ; needs "code/random"
642  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
643  ("src/code/reader"            :not-host) ; needs "code/readtable"
644  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
645  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
646  ("src/code/unix-pathname"      :not-host)
647  ("src/code/win32-pathname"     :not-host)
648  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
649
650  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
651                                           ;   from "code/pathname"
652  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
653  ("src/code/alloc"             :not-host)
654
655  ("src/code/target-thread"     :not-host)
656  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
657  ("src/code/gc"     :not-host)
658  ("src/code/purify" :not-host)
659  ("src/code/debug-int" :not-host)
660
661  ;; target-only assemblerish stuff
662  ("src/compiler/target-disassem"     :not-host)
663  ("src/compiler/target/target-insts" :not-host)
664
665  ("src/code/debug" :not-host)
666
667  ("src/code/octets" :not-host)
668  #!+sb-unicode
669  ("src/code/external-formats/enc-cyr" :not-host)
670  #!+sb-unicode
671  ("src/code/external-formats/enc-dos" :not-host)
672  #!+sb-unicode
673  ("src/code/external-formats/enc-iso" :not-host)
674  #!+sb-unicode
675  ("src/code/external-formats/enc-win" :not-host)
676  #!+sb-unicode
677  ("src/code/external-formats/eucjp" :not-host)
678
679  ;; The code here can't be compiled until CONDITION and
680  ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
681  ;; declared special.
682  ("src/code/parse-defmacro-errors")
683
684  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
685
686  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
687  ("src/compiler/target/sanctify" :not-host)
688
689  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
690  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
691
692  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
693
694  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
695  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
696
697  ;; Declare all target special variables defined by ANSI now, so that
698  ;; we don't have to worry about any of them being bound incorrectly
699  ;; when the compiler processes code which appears before the appropriate
700  ;; DEFVAR or DEFPARAMETER.
701  ("src/code/cl-specials")
702
703  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
704  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
705  ("src/compiler/late-proclaim")
706
707  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
708  ;; for them
709  ("src/code/defboot")
710  ("src/code/destructuring-bind")
711  ("src/code/early-setf")
712  ("src/code/macros")
713  ("src/code/loop")
714  ("src/code/late-setf")
715
716  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
717  ;; other target-code-building stuff which can't be processed until
718  ;; machinery like SB!XC:DEFMACRO exists
719
720  ("src/code/late-format") ; needs SB!XC:DEFMACRO
721  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
722  ("src/code/signal")
723  ("src/code/late-defbangmethod")
724
725  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
726  ;; PCL-related stuff, which shouldn't need to be done earlier than
727  ;; anything else in cold build because after all it used to be
728  ;; postponed 'til warm init with no problems.
729
730  ("src/pcl/walk"))