0.8.14.9:
[sbcl.git] / base-target-features.lisp-expr
1 ;;;; -*- Lisp -*-
2
3 ;;;; tags which are set during the build process and which end up in
4 ;;;; CL:*FEATURES* in the target SBCL, plus some comments about other
5 ;;;; CL:*FEATURES* tags which have special meaning to SBCL or which
6 ;;;; have a special conventional meaning
7 ;;;;
8 ;;;; Note that the recommended way to customize the features of a
9 ;;;; local build of SBCL is not to edit this file, but instead to
10 ;;;; tweak customize-target-features.lisp. If you define a function
11 ;;;; in customize-target-features.lisp, it will be used to transform
12 ;;;; the target features list after it's read and before it's used.
13 ;;;; E.g. you can use code like this:
14 ;;;;    (lambda (list)
15 ;;;;      (flet ((enable (x) (pushnew x list))
16 ;;;;             (disable (x) (setf list (remove x list))))
17 ;;;;        #+nil (enable :sb-show)
18 ;;;;        (enable :sb-after-xc-core)
19 ;;;;        #+nil (disable :sb-doc)
20 ;;;;        list))
21 ;;;; By thus editing a local file (one which is not in the source
22 ;;;; distribution, and which is in .cvsignore) your customizations
23 ;;;; will remain local even if you do things like "cvs update",
24 ;;;; will not show up if you try to submit a patch with "cvs diff",
25 ;;;; and might even stay out of the way if you use other non-CVS-based
26 ;;;; methods to upgrade the files or store your configuration.
27
28 ;;;; This software is part of the SBCL system. See the README file for
29 ;;;; more information.
30 ;;;;
31 ;;;; This software is derived from the CMU CL system, which was
32 ;;;; written at Carnegie Mellon University and released into the
33 ;;;; public domain. The software is in the public domain and is
34 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
35 ;;;; files for more information.
36
37 (
38  ;;
39  ;; features present in all builds
40  ;;
41
42  ;; our standard
43  :ansi-cl :common-lisp
44  ;; FIXME: Isn't there a :x3jsomething feature which we should set too?
45  ;; No. CLHS says ":x3j13 [...] A conforming implementation might or
46  ;; might not contain such a feature." -- CSR, 2002-02-21
47
48  ;; our dialect
49  :sbcl
50
51  ;; Douglas Thomas Crosher's conservative generational GC (the only one
52  ;; we currently support for X86).
53  ;; :gencgc used to be here; CSR moved it into
54  ;; local-target-features.lisp-expr via make-config.sh, as alpha,
55  ;; sparc and ppc ports don't currently support it. -- CSR, 2002-02-21
56
57  ;; We're running under a UNIX. This is sort of redundant, and it was also
58  ;; sort of redundant under CMU CL, which we inherited it from: neither SBCL
59  ;; nor CMU CL supports anything but UNIX (and "technically not UNIX"es
60  ;; such as *BSD and Linux). But someday, maybe we might, and in that case
61  ;; we'd presumably remove this, so its presence conveys the information
62  ;; that the system isn't one which follows such a change.
63  :unix
64
65  ;;
66  ;; features present in this particular build
67  ;;
68
69  ;; Setting this enables the compilation of documentation strings
70  ;; from the system sources into the target Lisp executable.
71  ;; Traditional Common Lisp folk will want this option set.
72  ;; I (WHN) made it optional because I came to Common Lisp from
73  ;; C++ through Scheme, so I'm accustomed to asking
74  ;; Emacs about things that I'm curious about instead of asking
75  ;; the executable I'm running.
76  :sb-doc
77
78  ;; Do regression and other tests when building the system. You might
79  ;; or might not want this if you're not a developer, depending on how
80  ;; paranoid you are. You probably do want it if you are a developer.
81  ;; This test does not affect the target system (in much the same way
82  ;; as :sb-after-xc-core, below).
83  :sb-test
84
85  ;; Make more debugging information available (for debugging SBCL
86  ;; itself). If you aren't hacking or troubleshooting SBCL itself,
87  ;; you probably don't want this set.
88  ;;
89  ;; At least two varieties of debugging information are enabled by this
90  ;; option:
91  ;;   * SBCL is compiled with a higher level of OPTIMIZE DEBUG, so that
92  ;;     the debugger can tell more about the state of the system.
93  ;;   * Various code to print debugging messages, and similar debugging code,
94  ;;     is compiled only when this feature is present.
95  ;;
96  ;; Note that the extra information recorded by the compiler at
97  ;; this higher level of OPTIMIZE DEBUG includes the source location
98  ;; forms. In order for the debugger to use this information, it has to
99  ;; re-READ the source file. In an ordinary installation of SBCL, this
100  ;; re-READing may not work very well, for either of two reasons:
101  ;;   * The sources aren't present on the system in the same location that
102  ;;     they were on the system where SBCL was compiled.
103  ;;   * SBCL is using the standard readtable, without the added hackage
104  ;;     which allows it to handle things like target features.
105  ;; If you want to be able to use the extra debugging information,
106  ;; therefore, be sure to keep the sources around, and run with the
107  ;; readtable configured so that the system sources can be read.
108  ; :sb-show
109
110  ;; Build SBCL with the old CMU CL low level debugger, "ldb". If are
111  ;; aren't messing with SBCL at a very low level (e.g., trying to
112  ;; diagnose GC problems, or trying to debug assembly code for a port
113  ;; to a new CPU) you shouldn't need this.
114  ; :sb-ldb
115
116  ;; This isn't really a target Lisp feature at all, but controls
117  ;; whether the build process produces an after-xc.core file. This
118  ;; can be useful for shortening the edit/compile/debug cycle when
119  ;; you modify SBCL's own source code, as in slam.sh. Otherwise
120  ;; you don't need it.
121  ; :sb-after-xc-core
122
123  ;; Enable extra debugging output in the assem.lisp assembler/scheduler
124  ;; code. (This is the feature which was called :DEBUG in the
125  ;; original CMU CL code.)
126  ; :sb-show-assem
127
128  ;; Setting this makes SBCL more "fluid", i.e. more amenable to
129  ;; modification at runtime, by suppressing various INLINE declarations,
130  ;; compiler macro definitions, FREEZE-TYPE declarations; and by
131  ;; suppressing various burning-our-ships-behind-us actions after
132  ;; initialization is complete; and so forth. This tends to clobber the
133  ;; performance of the system, so unless you have some special need for
134  ;; this when hacking SBCL itself, you don't want this set.
135  ; :sb-fluid
136
137  ;; Enable code for collecting statistics on usage of various operations,
138  ;; useful for performance tuning of the SBCL system itself. This code
139  ;; is probably pretty stale (having not been tested since the fork from
140  ;; base CMU CL) but might nonetheless be a useful starting point for
141  ;; anyone who wants to collect such statistics in the future.
142  ; :sb-dyncount
143
144  ;; Peter Van Eynde's increase-bulletproofness code for CMU CL
145  ;;
146  ;; Some of the code which was #+high-security before the fork has now
147  ;; been either made unconditional, deleted, or rewritten into
148  ;; unrecognizability, but some remains. What remains is not maintained
149  ;; or tested in current SBCL, but I haven't gone out of my way to
150  ;; break it, either. 
151  ;;
152  ; :high-security
153  ; :high-security-support
154
155  ;; low-level thread primitives support
156  ;;
157  ;; As of SBCL 0.8,  this is only supposed to work in x86 Linux, on which
158  ;; system it's implemented using clone(2) and the %fs segment register.
159  ;; Note that no consistent effort to audit the SBCL library code for
160  ;; thread safety has been performed, so caveat executor.
161  ; :sb-thread
162
163  ;; Kernel support for futexes (so-called "fast userspace mutexes") is
164  ;; available in Linux 2.6 and some versions of 2.4 (Red Hat vendor
165  ;; kernels, possibly other vendors too).  We can take advantage of
166  ;; these to do faster and probably more reliable mutex and condition
167  ;; variable support.  An SBCL built with this feature will fall back
168  ;; to the old system if the futex() syscall is not available at
169  ;; runtime
170  ; :sb-futex
171
172  ;; Support for detection of unportable code (when applied to the
173  ;; COMMON-LISP package, or SBCL-internal pacakges) or bad-neighbourly
174  ;; code (when applied to user-level packages), relating to material
175  ;; alteration to packages or to bindings in symbols in packages.
176  :sb-package-locks
177  
178  ;; This affects the definition of a lot of things in bignum.lisp. It
179  ;; doesn't seem to be documented anywhere what systems it might apply
180  ;; to. It doesn't seem to be needed for X86 systems anyway.
181  ; :32x16-divide
182
183  ;; This is set in classic CMU CL, and presumably there it means
184  ;; that the floating point arithmetic implementation
185  ;; conforms to IEEE's standard. Here it definitely means that the
186  ;; floating point arithmetic implementation conforms to IEEE's standard.
187  ;; I (WHN 19990702) haven't tried to verify
188  ;; that it does conform, but it should at least mostly conform (because
189  ;; the underlying x86 hardware tries).
190  :ieee-floating-point
191
192  ;; CMU CL had, and we inherited, code to support 80-bit LONG-FLOAT on the x86
193  ;; architecture. Nothing has been done to actively destroy the long float
194  ;; support, but it hasn't been thoroughly maintained, and needs at least
195  ;; some maintenance before it will work. (E.g. the LONG-FLOAT-only parts of
196  ;; genesis are still implemented in terms of unportable CMU CL functions
197  ;; which are not longer available at genesis time in SBCL.) A deeper
198  ;; problem is SBCL's bootstrap process implicitly assumes that the
199  ;; cross-compilation host will be able to make the same distinctions
200  ;; between floating point types that it does. This assumption is
201  ;; fundamentally sleazy, even though in practice it's unlikely to break down
202  ;; w.r.t. distinguishing SINGLE-FLOAT from DOUBLE-FLOAT; it's much more
203  ;; likely to break down w.r.t. distinguishing DOUBLE-FLOAT from LONG-FLOAT.
204  ;; Still it's likely to be quite doable to get LONG-FLOAT support working
205  ;; again, if anyone's sufficiently motivated.
206  ; :long-float
207
208  ;;
209  ;; miscellaneous notes on other things which could have special significance
210  ;; in the *FEATURES* list
211  ;;
212
213  ;; Any target feature which affects binary compatibility of fasl files
214  ;; needs to be recorded in *FEATURES-POTENTIALLY-AFFECTING-FASL-FORMAT*
215  ;; (elsewhere).
216
217  ;; notes on the :NIL and :IGNORE features:
218  ;;
219  ;; #+NIL is used to comment out forms. Occasionally #+IGNORE is used
220  ;; for this too. So don't use :NIL or :IGNORE as the names of features..
221
222  ;; notes on :SB-XC and :SB-XC-HOST features (which aren't controlled by this
223  ;; file, but are instead temporarily pushed onto *FEATURES* or
224  ;; *TARGET-FEATURES* during some phases of cross-compilation):
225  ;;
226  ;; :SB-XC-HOST stands for "cross-compilation host" and is in *FEATURES*
227  ;; during the first phase of cross-compilation bootstrapping, when the
228  ;; host Lisp is being used to compile the cross-compiler.
229  ;;
230  ;; :SB-XC stands for "cross compiler", and is in *FEATURES* during the second
231  ;; phase of cross-compilation bootstrapping, when the cross-compiler is
232  ;; being used to create the first target Lisp.
233
234  ;; notes on the :SB-ASSEMBLING feature (which isn't controlled by
235  ;; this file):
236  ;;
237  ;; This is a flag for whether we're in the assembler. It's
238  ;; temporarily pushed onto the *FEATURES* list in the setup for
239  ;; the ASSEMBLE-FILE function. It would be a bad idea
240  ;; to use it as a name for a permanent feature.
241
242  ;; notes on local features (which are set automatically by the
243  ;; configuration script, and should not be set here unless you
244  ;; really, really know what you're doing):
245  ;; 
246  ;; machine architecture features:
247  ;;   :x86
248  ;;      any Intel 386 or better, or compatibles like the AMD K6 or K7
249  ;;   :alpha
250  ;;      DEC/Compaq Alpha CPU
251  ;;   :sparc
252  ;;      any Sun UltraSPARC (possibly also non-Ultras -- currently untested)
253  ;;   :ppc
254  ;;      any PowerPC CPU
255  ;;   :hppa
256  ;;      any PA-RISC CPU
257  ;;   :mips
258  ;;      any MIPS CPU (in little-endian mode with :little-endian -- currently
259  ;;      untested)
260  ;;   
261  ;; (CMU CL also had a :pentium feature, which affected the definition
262  ;; of some floating point vops. It was present but not enabled or
263  ;; documented in the CMU CL code that SBCL is derived from, and has
264  ;; now been moved to the backend-subfeatures mechanism.)
265  ;;
266  ;; properties derived from the machine architecture
267  ;;   :control-stack-grows-downward-not-upward
268  ;;     On the X86, the Lisp control stack grows downward. On the
269  ;;     other supported CPU architectures as of sbcl-0.7.1.40, the
270  ;;     system stack grows upward. 
271  ;;   Note that there are other stack-related differences between the
272  ;;   X86 port and the other ports. E.g. on the X86, the Lisp control
273  ;;   stack coincides with the C stack, meaning that on the X86 there's
274  ;;   stuff on the control stack that the Lisp-level debugger doesn't
275  ;;   understand very well. As of sbcl-0.7.1.40 things like that are
276  ;;   just parameterized by #!+X86, but it'd probably be better to
277  ;;   use new flags like :CONTROL-STACK-CONTAINS-C-STACK.
278  ;;
279  ;; operating system features:
280  ;;   :linux   = We're intended to run under some version of Linux.
281  ;;   :bsd     = We're intended to run under some version of BSD Unix. (This
282  ;;              is not exclusive with the features which indicate which
283  ;;              particular version of BSD we're intended to run under.)
284  ;;   :freebsd = We're intended to run under FreeBSD.
285  ;;   :openbsd = We're intended to run under OpenBSD.
286  ;;   :netbsd  = We're intended to run under NetBSD.
287  ;;   :sunos   = We're intended to run under Solaris user environment
288  ;;              with the SunOS kernel.
289  ;;   :osf1    = We're intended to run under Tru64 (aka Digital Unix
290  ;;              aka OSF/1).
291  ;; (No others are supported by SBCL as of 0.7.5, but :hpux or :irix
292  ;; support could be ported from CMU CL if anyone is sufficiently
293  ;; motivated to do so, and it'd even be possible, though harder, to
294  ;; port the system to Microsoft Windows or MacOS X.)
295  )