4 # The make-config.sh script uses information about the target machine
5 # to set things up for compilation. It's vaguely like a stripped-down
6 # version of autoconf. It's intended to be run as part of make.sh. The
7 # only time you'd want to run it by itself is if you're trying to
8 # cross-compile the system or if you're doing some kind of
11 # This software is part of the SBCL system. See the README file for
14 # This software is derived from the CMU CL system, which was
15 # written at Carnegie Mellon University and released into the
16 # public domain. The software is in the public domain and is
17 # provided with absolutely no warranty. See the COPYING and CREDITS
18 # files for more information.
22 # The classic form here was to use --userinit $DEVNULL --sysinit
23 # $DEVNULL, but that doesn't work on Win32 because SBCL doesn't handle
24 # device names properly. We still need $DEVNULL to be NUL on Win32
25 # because it's used elsewhere (such as canonicalize-whitespace), so we
26 # need an alternate solution for the init file overrides. --no-foos
27 # have now been available long enough that this should not stop anyone
29 if [ "$OSTYPE" = "cygwin" -o "$OSTYPE" = "msys" ]
31 SBCL_PREFIX
="$PROGRAMFILES/sbcl"
33 SBCL_PREFIX
="/usr/local"
35 SBCL_XC_HOST
="sbcl --disable-debugger --no-userinit --no-sysinit"
38 # Parse command-line options.
41 echo "Enter \"$0 --help\" for list of valid options."
47 FANCY_FEATURES
=":sb-core-compression :sb-xref-for-internals :sb-after-xc-core"
54 # Split --foo=bar into --foo and bar.
57 # For ease of scripting skip valued options with empty
59 optarg
=`expr "X$option" : '[^=]*=\(.*\)'` || optarg_ok
=false
60 option
=`expr "X$option" : 'X\([^=]*=\).*'`
63 optarg
=`expr "X$option" : 'X--[^-]*-\(.*\)'` \
64 || bad_option
"Malformed feature toggle: $option"
65 option
=`expr "X$option" : 'X\(--[^-]*\).*'`
76 $optarg_ok && SBCL_PREFIX
=$optarg
79 $oparg_ok && SBCL_ARCH
=$optarg
82 $optarg_ok && SBCL_XC_HOST
=$optarg
85 $optarg_ok && SBCL_HOST_LOCATION
=$optarg
88 $optarg_ok && SBCL_TARGET_LOCATION
=$optarg
90 --dynamic-space-size=)
91 $optarg_ok && SBCL_DYNAMIC_SPACE_SIZE
=$optarg
94 WITH_FEATURES
="$WITH_FEATURES :$optarg"
97 WITHOUT_FEATURES
="$WITHOUT_FEATURES :$optarg"
100 WITH_FEATURES
="$WITH_FEATURES $FANCY_FEATURES"
101 # Lower down we add :sb-thread for platforms where it can be built.
105 bad_option
"Unknown command-line option to $0: \"$option\""
110 bad_option
"Unknown command-line option to $0: \"$option\""
112 legacy_xc_spec
=$option
119 if (test -f customize-target-features.lisp
&& \
120 (test -n "$WITH_FEATURES" ||
test -n "$WITHOUT_FEATURES"))
122 # Actually there's no reason why it would not work, but it would
123 # be confusing to say --with-thread only to have it turned off by
124 # customize-target-features.lisp...
125 echo "ERROR: Both customize-target-features.lisp, and feature-options"
126 echo "to make.sh present -- cannot use both at the same time."
130 # Previously XC host was provided as a positional argument.
131 if test -n "$legacy_xc_spec"
133 SBCL_XC_HOST
="$legacy_xc_spec"
136 if test "$print_help" = "yes"
139 \`make.sh' drives the SBCL build.
141 Usage: $0 [OPTION]...
143 Important: make.sh does not currently control the entirety of the
144 build: configuration file customize-target-features.lisp and certain
145 environment variables play a role as well. see file INSTALL for
149 -h, --help Display this help and exit.
151 --prefix=<path> Specify the install location.
153 Script install.sh installs SBCL under the specified prefix
154 path: runtime as prefix/bin/sbcl, additional files under
155 prefix/lib/sbcl, and documentation under prefix/share.
157 This option also affects the binaries: built-in default for
158 SBCL_HOME is: prefix/lib/sbcl/
160 Default prefix is: /usr/local
162 --dynamic-space-size=<size> Default dynamic-space size for target.
164 This specifies the default dynamic-space size for the SBCL
165 being built. If you need to control the dynamic-space size
166 of the host SBCL, use the --xc-host option.
168 If not provided, the default is platform-specific. <size> is
169 taken to be megabytes unless explicitly suffixed with Gb in
170 order to specify the size in gigabytes.
172 --with-<feature> Build with specified feature.
173 --without-<feature> Build wihout the specfied feature.
175 --fancy Build with several optional features:
179 Plus threading on platforms which support it.
181 --arch=<string> Specify the architecture to build for.
183 Mainly for doing x86 builds on x86-64.
185 --xc-host=<string> Specify the Common Lisp compilation host.
187 The string provided should be a command to invoke the
188 cross-compilation Lisp system in such a way, that it reads
189 commands from standard input, and terminates when it reaches end
190 of file on standard input.
194 "sbcl --disable-debugger --no-sysinit --no-userinit"
195 Use an existing SBCL binary as a cross-compilation
196 host even though you have stuff in your
197 initialization files which makes it behave in such a
198 non-standard way that it keeps the build from
199 working. Also disable the debugger instead of
200 waiting endlessly for a programmer to help it out
201 with input on *DEBUG-IO*. (This is the default.)
204 Use an existing SBCL binary as a cross-compilation
205 host, including your initialization files and
206 building with the debugger enabled. Not recommended
209 "lisp -noinit -batch"
210 Use an existing CMU CL binary as a cross-compilation
211 host when you have weird things in your .cmucl-init
217 # Running make.sh with different options without clean.sh in the middle
222 # Save prefix for make and install.sh.
223 echo "SBCL_PREFIX='$SBCL_PREFIX'" > output
/prefix.def
224 echo "$SBCL_DYNAMIC_SPACE_SIZE" > output
/dynamic-space-size.txt
226 # FIXME: Tweak this script, and the rest of the system, to support
227 # a second bootstrapping pass in which the cross-compilation host is
228 # known to be SBCL itself, so that the cross-compiler can do some
229 # optimizations (especially specializable arrays) that it doesn't
230 # know how to implement how in a portable way. (Or maybe that wouldn't
231 # require a second pass, just testing at build-the-cross-compiler time
232 # whether the cross-compilation host returns suitable values from
233 # UPGRADED-ARRAY-ELEMENT-TYPE?)
235 if [ "$OSTYPE" = "cygwin" -o "$OSTYPE" = "msys" ] ; then
245 .
/generate-version.sh
247 # Now that we've done our option parsing and found various
248 # dependencies, write them out to a file to be sourced by other
251 echo "DEVNULL=\"$DEVNULL\"; export DEVNULL" > output
/build-config
252 echo "GNUMAKE=\"$GNUMAKE\"; export GNUMAKE" >> output
/build-config
253 echo "SBCL_XC_HOST=\"$SBCL_XC_HOST\"; export SBCL_XC_HOST" >> output
/build-config
254 echo "legacy_xc_spec=\"$legacy_xc_spec\"; export legacy_xc_spec" >> output
/build-config
255 if [ -n "$SBCL_HOST_LOCATION" ]; then
256 echo "SBCL_HOST_LOCATION=\"$SBCL_HOST_LOCATION\"; export SBCL_HOST_LOCATION" >> output
/build-config
258 if [ -n "$SBCL_TARGET_LOCATION" ]; then
259 echo "SBCL_TARGET_LOCATION=\"$SBCL_TARGET_LOCATION\"; export SBCL_TARGET_LOCATION" >> output
/build-config
262 # And now, sorting out the per-target dependencies...
269 # it's changed name twice since it was called OSF/1: clearly
270 # the marketers forgot to tell the engineers about Digital Unix
280 sbcl_os
="gnu-kfreebsd"
289 echo unsupported BSD variant
: `uname`
303 CYGWIN
* | WindowsNT | MINGW
*)
310 echo unsupported OS
type: `uname`
316 if [ "$sbcl_os" = "win32" ] ; then
317 # Use preprocessor or makefile includes instead of copying if
318 # possible, to avoid unexpected use of the original, unchanged
319 # files when re-running only make-target-1 during development.
320 if echo "$1" |
egrep '[.][ch]$'; then
321 echo "#include \"$1\"" >"$2"
322 elif echo "$1" |
egrep '^Config[.]'; then
323 echo "include $1" >"$2"
332 remove_dir_safely
() {
333 if [ "$sbcl_os" = "win32" ] ; then
334 if [ -d "$1" ] ; then
336 elif [ -e "$1" ] ; then
337 echo "I'm afraid to remove non-directory $1."
341 if [ -h "$1" ] ; then
343 elif [ -w "$1" ] ; then
344 echo "I'm afraid to replace non-symlink $1 with a symlink."
350 echo //entering make-config.sh
352 echo //ensuring the existence of output
/ directory
353 if [ ! -d output
] ; then mkdir output
; fi
355 echo //guessing default target CPU architecture from
host architecture
357 *86) guessed_sbcl_arch
=x86
;;
358 i86pc
) guessed_sbcl_arch
=x86
;;
359 *x86_64
) guessed_sbcl_arch
=x86-64
;;
360 amd64
) guessed_sbcl_arch
=x86-64
;;
361 [Aa
]lpha
) guessed_sbcl_arch
=alpha
;;
362 sparc
*) guessed_sbcl_arch
=sparc
;;
363 sun
*) guessed_sbcl_arch
=sparc
;;
364 *ppc
) guessed_sbcl_arch
=ppc
;;
365 ppc64
) guessed_sbcl_arch
=ppc
;;
366 Power
*Macintosh
) guessed_sbcl_arch
=ppc
;;
367 ibmnws
) guessed_sbcl_arch
=ppc
;;
368 parisc
) guessed_sbcl_arch
=hppa
;;
369 9000/800) guessed_sbcl_arch
=hppa
;;
370 mips
*) guessed_sbcl_arch
=mips
;;
371 arm
*) guessed_sbcl_arch
=arm
;;
373 # If we're not building on a supported target architecture, we
374 # we have no guess, but it's not an error yet, since maybe
375 # target architecture will be specified explicitly below.
380 # Under Solaris, uname -m returns "i86pc" even if CPU is amd64.
381 if [ "$sbcl_os" = "sunos" ] && [ `isainfo -k` = "amd64" ]; then
382 guessed_sbcl_arch
=x86-64
385 # Under Darwin, uname -m returns "i386" even if CPU is x86_64.
386 if [ "$sbcl_os" = "darwin" ] && [ "`/usr/sbin/sysctl -n hw.optional.x86_64`" = "1" ]; then
387 guessed_sbcl_arch
=x86-64
390 echo //setting up CPU-architecture-dependent information
391 if test -n "$SBCL_ARCH"
394 SBCL_ARCH
=`echo $SBCL_ARCH | tr '[A-Z]' '[a-z]' | tr _ -`
396 sbcl_arch
=${SBCL_ARCH:-$guessed_sbcl_arch}
397 echo sbcl_arch
=\"$sbcl_arch\"
398 if [ "$sbcl_arch" = "" ] ; then
399 echo "can't guess target SBCL architecture, please specify --arch=<name>"
404 # If --fancy, enable threads on platforms where they can be built.
407 if ([ "$sbcl_os" = "sunos" ] && [ "$sbcl_arch" = "x86-64" ]) || \
408 [ "$sbcl_os" = "dragonfly" ]
410 echo "No threads on this platform."
412 WITH_FEATURES
="$WITH_FEATURES :sb-thread"
413 echo "Enabling threads due to --fancy."
417 echo "No threads on this platform."
422 ltf
=`pwd`/local-target-features.lisp-expr
423 echo //initializing
$ltf
424 echo ';;;; This is a machine-generated file.' > $ltf
425 echo ';;;; Please do not edit it by hand.' >> $ltf
426 echo ';;;; See make-config.sh.' >> $ltf
427 echo "(lambda (features) (union (set-difference features (list$WITHOUT_FEATURES))" >> $ltf
428 printf " (union (list$WITH_FEATURES) (list " >> $ltf
430 printf ":%s" "$sbcl_arch" >> $ltf
432 echo //setting up OS-dependent information
433 # Under Darwin x86-64, guess whether Darwin 9+ or below.
434 if [ "$sbcl_os" = "darwin" ] && [ "$sbcl_arch" = "x86-64" ]; then
435 darwin_version
=`uname -r`
436 darwin_version_major
=${DARWIN_VERSION_MAJOR:-${darwin_version%%.*}}
437 if (( 8 < $darwin_version_major )); then
438 printf ' :inode64 :darwin9-or-better' >> $ltf
444 rm -f Config target-arch-os.h target-arch.h target-os.h target-lispregs.h
445 # KLUDGE: these two logically belong in the previous section
446 # ("architecture-dependent"); it seems silly to enforce this in terms
447 # of the shell script, though. -- CSR, 2002-02-03
448 link_or_copy
$sbcl_arch-arch.h target-arch.h
449 link_or_copy
$sbcl_arch-lispregs.h target-lispregs.h
452 printf ' :unix' >> $ltf
453 printf ' :elf' >> $ltf
454 printf ' :linux' >> $ltf
456 # If you add other platforms here, don't forget to edit
457 # src/runtime/Config.foo-linux too.
460 printf ' :largefile' >> $ltf
463 printf ' :sb-thread :sb-futex :largefile' >> $ltf
466 printf ' :sb-futex' >> $ltf
471 link_or_copy Config.
$sbcl_arch-linux Config
472 link_or_copy
$sbcl_arch-linux-os.h target-arch-os.h
473 link_or_copy linux-os.h target-os.h
476 printf ' :unix' >> $ltf
477 printf ' :elf' >> $ltf
478 printf ' :osf1' >> $ltf
479 link_or_copy Config.
$sbcl_arch-osf1 Config
480 link_or_copy
$sbcl_arch-osf1-os.h target-arch-os.h
481 link_or_copy osf1-os.h target-os.h
484 printf ' :unix' >> $ltf
485 printf ' :elf' >> $ltf
486 printf ' :hpux' >> $ltf
487 link_or_copy Config.
$sbcl_arch-hpux Config
488 link_or_copy
$sbcl_arch-hpux-os.h target-arch-os.h
489 link_or_copy hpux-os.h target-os.h
492 printf ' :unix' >> $ltf
493 printf ' :bsd' >> $ltf
494 link_or_copy
$sbcl_arch-bsd-os.h target-arch-os.h
495 link_or_copy bsd-os.h target-os.h
498 printf ' :elf' >> $ltf
499 printf ' :freebsd' >> $ltf
500 printf ' :gcc-tls' >> $ltf
501 if [ $sbcl_os = "gnu-kfreebsd" ]; then
502 printf ' :gnu-kfreebsd' >> $ltf
505 if [ $sbcl_arch = "x86" ]; then
506 printf ' :restore-fs-segment-register-from-tls' >> $ltf
508 link_or_copy Config.
$sbcl_arch-$sbcl_os Config
511 printf ' :elf' >> $ltf
512 printf ' :openbsd' >> $ltf
513 link_or_copy Config.
$sbcl_arch-openbsd Config
516 printf ' :netbsd' >> $ltf
517 printf ' :elf' >> $ltf
518 link_or_copy Config.
$sbcl_arch-netbsd Config
521 echo unsupported BSD variant
: `uname`
527 printf ' :unix' >> $ltf
528 printf ' :bsd' >> $ltf
529 printf ' :elf' >> $ltf
530 printf ' :dragonfly' >> $ltf
531 printf ' :sb-qshow' >> $ltf
532 if [ $sbcl_arch = "x86" ]; then
533 printf ' :restore-fs-segment-register-from-tls' >> $ltf
535 link_or_copy
$sbcl_arch-bsd-os.h target-arch-os.h
536 link_or_copy bsd-os.h target-os.h
537 link_or_copy Config.
$sbcl_arch-dragonfly Config
540 printf ' :unix' >> $ltf
541 printf ' :mach-o' >> $ltf
542 printf ' :bsd' >> $ltf
543 printf ' :darwin' >> $ltf
544 if [ $sbcl_arch = "x86" ]; then
545 printf ' :mach-exception-handler :restore-fs-segment-register-from-tls :ud2-breakpoints' >> $ltf
547 if [ $sbcl_arch = "x86-64" ]; then
548 printf ' :mach-exception-handler :ud2-breakpoints' >> $ltf
550 link_or_copy
$sbcl_arch-darwin-os.h target-arch-os.h
551 link_or_copy bsd-os.h target-os.h
552 link_or_copy Config.
$sbcl_arch-darwin Config
555 printf ' :unix' >> $ltf
556 printf ' :elf' >> $ltf
557 printf ' :sunos' >> $ltf
558 if [ $sbcl_arch = "x86-64" ]; then
559 printf ' :largefile' >> $ltf
561 link_or_copy Config.
$sbcl_arch-sunos Config
562 link_or_copy
$sbcl_arch-sunos-os.h target-arch-os.h
563 link_or_copy sunos-os.h target-os.h
566 printf ' :win32' >> $ltf
568 # Optional features -- We enable them by default, but the build
569 # ought to work perfectly without them:
571 printf ' :sb-futex' >> $ltf
572 printf ' :sb-qshow' >> $ltf
574 # Required features -- Some of these used to be optional, but
575 # building without them is no longer considered supported:
577 # (Of course it doesn't provide dlopen, but there is
578 # roughly-equivalent magic nevertheless:)
579 printf ' :sb-dynamic-core :os-provides-dlopen' >> $ltf
580 printf ' :sb-thread :sb-safepoint :sb-thruption :sb-wtimer' >> $ltf
581 printf ' :sb-safepoint-strictly' >> $ltf
583 link_or_copy Config.
$sbcl_arch-win32 Config
584 link_or_copy
$sbcl_arch-win32-os.h target-arch-os.h
585 link_or_copy win32-os.h target-os.h
588 echo unsupported OS
type: `uname`
594 # FIXME: Things like :c-stack-grows-..., etc, should be
595 # *derived-target-features* or equivalent, so that there was a nicer
596 # way to specify them then sprinkling them in this file. They should
597 # still be tweakable by advanced users, though, but probably not
598 # appear in *features* of target. #!+/- should be adjusted to take
599 # them in account as well. At minimum the nicer specification stuff,
602 # (define-feature :dlopen (features)
603 # (union '(:bsd :linux :darwin :sunos) features))
605 # (define-feature :c-stack-grows-downwards-not-upwards (features)
606 # (member :x86 features))
608 # KLUDGE: currently the x86 only works with the generational garbage
609 # collector (indicated by the presence of :GENCGC in *FEATURES*) and
610 # alpha, sparc and ppc with the stop'n'copy collector (indicated by
611 # the absence of :GENCGC in *FEATURES*). This isn't a great
612 # separation, but for now, rather than have :GENCGC in
613 # base-target-features.lisp-expr, we add it into local-target-features
614 # if we're building for x86. -- CSR, 2002-02-21 Then we do something
615 # similar with :STACK-GROWS-FOOWARD, too. -- WHN 2002-03-03
616 if [ "$sbcl_arch" = "x86" ]; then
617 printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack' >> $ltf
618 printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf
619 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
620 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
621 printf ' :alien-callbacks :cycle-counter :inline-constants :precise-arg-count-error' >> $ltf
622 printf ' :memory-barrier-vops :multiply-high-vops :ash-right-vops :symbol-info-vops' >> $ltf
624 linux | freebsd | gnu-kfreebsd | netbsd | openbsd | sunos | darwin | win32 | dragonfly
)
625 printf ' :linkage-table' >> $ltf
627 if [ "$sbcl_os" = "win32" ]; then
628 # of course it doesn't provide dlopen, but there is
629 # roughly-equivalent magic nevertheless.
630 printf ' :os-provides-dlopen' >> $ltf
632 if [ "$sbcl_os" = "openbsd" ]; then
633 rm -f src
/runtime
/openbsd-sigcontext.h
634 sh tools-for-build
/openbsd-sigcontext.sh
> src
/runtime
/openbsd-sigcontext.h
636 elif [ "$sbcl_arch" = "x86-64" ]; then
637 printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack :linkage-table' >> $ltf
638 printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf
639 printf ' :interleaved-raw-slots :precise-arg-count-error' >> $ltf
640 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
641 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
642 printf ' :alien-callbacks :cycle-counter :complex-float-vops' >> $ltf
643 printf ' :float-eql-vops :integer-eql-vop :inline-constants :memory-barrier-vops' >> $ltf
644 printf ' :multiply-high-vops :sb-simd-pack :ash-right-vops :symbol-info-vops' >> $ltf
645 elif [ "$sbcl_arch" = "mips" ]; then
646 printf ' :cheneygc :linkage-table' >> $ltf
647 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
648 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
649 printf ' :alien-callbacks' >> $ltf
650 elif [ "$sbcl_arch" = "ppc" ]; then
651 printf ' :gencgc :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
652 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
653 printf ' :linkage-table :raw-instance-init-vops :memory-barrier-vops' >> $ltf
654 printf ' :compare-and-swap-vops :multiply-high-vops :alien-callbacks' >> $ltf
655 if [ "$sbcl_os" = "linux" ]; then
656 # Use a C program to detect which kind of glibc we're building on,
657 # to bandage across the break in source compatibility between
658 # versions 2.3.1 and 2.3.2
660 # FIXME: integrate to grovel-features, mayhaps
661 $GNUMAKE -C tools-for-build where-is-mcontext
-I ..
/src
/runtime
662 tools-for-build
/where-is-mcontext
> src
/runtime
/ppc-linux-mcontext.h ||
(echo "error running where-is-mcontext"; exit 1)
663 elif [ "$sbcl_os" = "darwin" ]; then
664 # We provide a dlopen shim, so a little lie won't hurt
665 printf ' :os-provides-dlopen' >> $ltf
666 # The default stack ulimit under darwin is too small to run PURIFY.
667 # Best we can do is complain and exit at this stage
668 if [ "`ulimit -s`" = "512" ]; then
669 echo "Your stack size limit is too small to build SBCL."
670 echo "See the limit(1) or ulimit(1) commands and the README file."
674 elif [ "$sbcl_arch" = "sparc" ]; then
675 # Test the compiler in order to see if we are building on Sun
676 # toolchain as opposed to GNU binutils, and write the appropriate
677 # FUNCDEF macro for assembler. No harm in running this on sparc-linux
679 sh tools-for-build
/sparc-funcdef.sh
> src
/runtime
/sparc-funcdef.h
680 if [ "$sbcl_os" = "sunos" ] ||
[ "$sbcl_os" = "linux" ]; then
681 printf ' :gencgc' >> $ltf
684 echo '*** You are running SPARC on non-SunOS, non-Linux. Since'
685 echo '*** GENCGC is untested on this combination, make-config.sh'
686 echo '*** is falling back to CHENEYGC. Please consider adjusting'
687 echo '*** parms.lisp to build with GENCGC instead.'
689 printf ' :cheneygc' >> $ltf
691 if [ "$sbcl_os" = "sunos" ] ||
[ "$sbcl_os" = "linux" ]; then
692 printf ' :linkage-table' >> $ltf
694 printf ' :stack-allocatable-closures :stack-allocatable-lists' >> $ltf
695 elif [ "$sbcl_arch" = "alpha" ]; then
696 printf ' :cheneygc' >> $ltf
697 printf ' :stack-allocatable-closures :stack-allocatable-lists' >> $ltf
698 elif [ "$sbcl_arch" = "hppa" ]; then
699 printf ' :cheneygc' >> $ltf
700 printf ' :stack-allocatable-vectors :stack-allocatable-fixed-objects' >> $ltf
701 printf ' :stack-allocatable-lists' >> $ltf
702 elif [ "$sbcl_arch" = "arm" ]; then
703 printf ' :gencgc :linkage-table :alien-callbacks' >> $ltf
704 # As opposed to soft-float or FPA, we support VFP only (and
705 # possibly VFPv2 and higher only), but we'll leave the obvious
706 # hooks in for someone to add the support later.
707 printf ' :arm-vfp :arm-vfpv2' >> $ltf
708 printf ' :ash-right-vops :multiply-high-vops :symbol-info-vops' >> $ltf
709 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
710 printf ' :stack-allocatable-vectors :stack-allocatable-closures' >> $ltf
711 printf ' :precise-arg-count-error :unwind-to-frame-and-call-vop' >> $ltf
713 # Nothing need be done in this case, but sh syntax wants a placeholder.
717 # Use a little C program to try to guess the endianness. Ware
720 # FIXME: integrate to grovel-features, mayhaps
721 $GNUMAKE -C tools-for-build determine-endianness
-I ..
/src
/runtime
722 tools-for-build
/determine-endianness
>> $ltf
724 export sbcl_os sbcl_arch
725 sh tools-for-build
/grovel-features.sh
>> $ltf
727 echo //finishing
$ltf
730 # FIXME: The version system should probably be redone along these lines:
732 # echo //setting up version information.
733 # versionfile=version.txt
734 # cp base-version.txt $versionfile
735 # echo " (built `date -u` by `whoami`@`hostname`)" >> $versionfile
736 # echo 'This is a machine-generated file and should not be edited by hand.' >> $versionfile
738 # Make a unique ID for this build (to discourage people from
739 # mismatching sbcl and *.core files).
740 if [ `uname` = "SunOS" ] ; then
741 # use /usr/xpg4/bin/id instead of /usr/bin/id
742 PATH
=/usr
/xpg
4/bin
:$PATH
744 echo '"'`hostname`-`id -un`-`date +%Y-%m-%d-%H-%M-%S`'"' > output
/build-id.tmp
746 if [ -n "$SBCL_HOST_LOCATION" ]; then
747 echo //setting up
host configuration
748 rsync
--delete-after -a output
/ "$SBCL_HOST_LOCATION/output/"
749 rsync
-a local-target-features.lisp-expr version.lisp-expr
"$SBCL_HOST_LOCATION/"