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.
25 # it's changed name twice since it was called OSF/1: clearly
26 # the marketers forgot to tell the engineers about Digital Unix
42 echo unsupported BSD variant
: `uname`
53 CYGWIN
* | WindowsNT | MINGW
*)
60 echo unsupported OS
type: `uname`
66 if [ "$sbcl_os" = "win32" ] ; then
74 if [ "$sbcl_os" = "win32" ] ; then
77 elif [ -e "$1" ] ; then
78 echo "I'm afraid to remove non-directory $1."
84 elif [ -w "$1" ] ; then
85 echo "I'm afraid to replace non-symlink $1 with a symlink."
91 echo //entering make-config.sh
93 echo //ensuring the existence of output
/ directory
94 if [ ! -d output
] ; then mkdir output
; fi
96 ltf
=`pwd`/local-target-features.lisp-expr
97 echo //initializing
$ltf
98 echo ';;;; This is a machine-generated file.' > $ltf
99 echo ';;;; Please do not edit it by hand.' >> $ltf
100 echo ';;;; See make-config.sh.' >> $ltf
103 echo //guessing default target CPU architecture from
host architecture
105 *86) guessed_sbcl_arch
=x86
;;
106 i86pc
) guessed_sbcl_arch
=x86
;;
107 *x86_64
) guessed_sbcl_arch
=x86-64
;;
108 amd64
) guessed_sbcl_arch
=x86-64
;;
109 [Aa
]lpha
) guessed_sbcl_arch
=alpha
;;
110 sparc
*) guessed_sbcl_arch
=sparc
;;
111 sun
*) guessed_sbcl_arch
=sparc
;;
112 *ppc
) guessed_sbcl_arch
=ppc
;;
113 ppc64
) guessed_sbcl_arch
=ppc
;;
114 Power
*Macintosh
) guessed_sbcl_arch
=ppc
;;
115 parisc
) guessed_sbcl_arch
=hppa
;;
116 9000/800) guessed_sbcl_arch
=hppa
;;
117 mips
*) guessed_sbcl_arch
=mips
;;
119 # If we're not building on a supported target architecture, we
120 # we have no guess, but it's not an error yet, since maybe
121 # target architecture will be specified explicitly below.
126 # Under Solaris, uname -m returns "i86pc" even if CPU is amd64.
127 if [ "$sbcl_os" = "sunos" ] && [ `isainfo -k` = "amd64" ]; then
128 guessed_sbcl_arch
=x86-64
131 # Under Darwin, uname -m returns "i386" even if CPU is x86_64.
132 if [ "$sbcl_os" = "darwin" ] && [ "`/usr/sbin/sysctl -n hw.optional.x86_64`" = "1" ]; then
133 guessed_sbcl_arch
=x86-64
136 echo //setting up CPU-architecture-dependent information
137 sbcl_arch
=${SBCL_ARCH:-$guessed_sbcl_arch}
138 echo sbcl_arch
=\"$sbcl_arch\"
139 if [ "$sbcl_arch" = "" ] ; then
140 echo "can't guess target SBCL architecture, need SBCL_ARCH environment var"
143 printf ":%s" "$sbcl_arch" >> $ltf
145 echo //setting up OS-dependent information
147 # Under Darwin x86-64, guess whether Darwin 9+ or below.
148 if [ "$sbcl_os" = "darwin" ] && [ "$sbcl_arch" = "x86-64" ]; then
149 darwin_version
=`uname -r`
150 darwin_version_major
=${DARWIN_VERSION_MAJOR:-${darwin_version%%.*}}
151 if (( 8 < $darwin_version_major )); then
153 printf ' :inode64' >> $ltf
159 rm -f Config target-arch-os.h target-arch.h target-os.h target-lispregs.h
160 # KLUDGE: these two logically belong in the previous section
161 # ("architecture-dependent"); it seems silly to enforce this in terms
162 # of the shell script, though. -- CSR, 2002-02-03
163 link_or_copy
$sbcl_arch-arch.h target-arch.h
164 link_or_copy
$sbcl_arch-lispregs.h target-lispregs.h
167 printf ' :unix' >> $ltf
168 printf ' :elf' >> $ltf
169 printf ' :linux' >> $ltf
171 # If you add other platforms here, don't forget to edit
172 # src/runtime/Config.foo-linux too.
175 printf ' :largefile' >> $ltf
178 printf ' :sb-thread :largefile' >> $ltf
182 if [ $sbcl_arch = "x86-64" ]; then
183 link_or_copy Config.x86_64-linux Config
185 link_or_copy Config.
$sbcl_arch-linux Config
187 link_or_copy
$sbcl_arch-linux-os.h target-arch-os.h
188 link_or_copy linux-os.h target-os.h
191 printf ' :unix' >> $ltf
192 printf ' :elf' >> $ltf
193 printf ' :osf1' >> $ltf
194 link_or_copy Config.
$sbcl_arch-osf1 Config
195 link_or_copy
$sbcl_arch-osf1-os.h target-arch-os.h
196 link_or_copy osf1-os.h target-os.h
199 printf ' :unix' >> $ltf
200 printf ' :elf' >> $ltf
201 printf ' :hpux' >> $ltf
202 link_or_copy Config.
$sbcl_arch-hpux Config
203 link_or_copy
$sbcl_arch-hpux-os.h target-arch-os.h
204 link_or_copy hpux-os.h target-os.h
207 printf ' :unix' >> $ltf
208 printf ' :bsd' >> $ltf
209 link_or_copy
$sbcl_arch-bsd-os.h target-arch-os.h
210 link_or_copy bsd-os.h target-os.h
213 printf ' :elf' >> $ltf
214 printf ' :freebsd' >> $ltf
215 printf ' :gcc-tls' >> $ltf
216 if [ $sbcl_arch = "x86" ]; then
217 printf ' :restore-tls-segment-register-from-context' >> $ltf
219 link_or_copy Config.
$sbcl_arch-freebsd Config
222 printf ' :elf' >> $ltf
223 printf ' :openbsd' >> $ltf
224 link_or_copy Config.
$sbcl_arch-openbsd Config
227 printf ' :netbsd' >> $ltf
228 printf ' :elf' >> $ltf
229 link_or_copy Config.
$sbcl_arch-netbsd Config
232 echo unsupported BSD variant
: `uname`
238 printf ' :unix' >> $ltf
239 printf ' :mach-o' >> $ltf
240 printf ' :bsd' >> $ltf
241 printf ' :darwin' >> $ltf
242 if [ $sbcl_arch = "x86" ]; then
243 printf ' :mach-exception-handler :sb-lutex :restore-fs-segment-register-from-tls :ud2-breakpoints' >> $ltf
245 if [ $sbcl_arch = "x86-64" ]; then
246 printf ' :mach-exception-handler :sb-lutex :ud2-breakpoints' >> $ltf
248 link_or_copy
$sbcl_arch-darwin-os.h target-arch-os.h
249 link_or_copy bsd-os.h target-os.h
250 link_or_copy Config.
$sbcl_arch-darwin$ver9_or_above Config
253 printf ' :unix' >> $ltf
254 printf ' :elf' >> $ltf
255 printf ' :sunos' >> $ltf
256 if [ $sbcl_arch = "x86" ] ||
[ $sbcl_arch = "amd64" ]; then
257 printf ' :sb-lutex' >> $ltf
259 link_or_copy Config.
$sbcl_arch-sunos Config
260 link_or_copy
$sbcl_arch-sunos-os.h target-arch-os.h
261 link_or_copy sunos-os.h target-os.h
264 printf ' :win32' >> $ltf
265 link_or_copy Config.
$sbcl_arch-win32 Config
266 link_or_copy
$sbcl_arch-win32-os.h target-arch-os.h
267 link_or_copy win32-os.h target-os.h
270 echo unsupported OS
type: `uname`
276 # FIXME: Things like :c-stack-grows-..., etc, should be
277 # *derived-target-features* or equivalent, so that there was a nicer
278 # way to specify them then sprinkling them in this file. They should
279 # still be tweakable by advanced users, though, but probably not
280 # appear in *features* of target. #!+/- should be adjusted to take
281 # them in account as well. At minimum the nicer specification stuff,
284 # (define-feature :dlopen (features)
285 # (union '(:bsd :linux :darwin :sunos) features))
287 # (define-feature :c-stack-grows-downwards-not-upwards (features)
288 # (member :x86 features))
290 # KLUDGE: currently the x86 only works with the generational garbage
291 # collector (indicated by the presence of :GENCGC in *FEATURES*) and
292 # alpha, sparc and ppc with the stop'n'copy collector (indicated by
293 # the absence of :GENCGC in *FEATURES*). This isn't a great
294 # separation, but for now, rather than have :GENCGC in
295 # base-target-features.lisp-expr, we add it into local-target-features
296 # if we're building for x86. -- CSR, 2002-02-21 Then we do something
297 # similar with :STACK-GROWS-FOOWARD, too. -- WHN 2002-03-03
298 if [ "$sbcl_arch" = "x86" ]; then
299 printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack' >> $ltf
300 printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf
301 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
302 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
303 printf ' :alien-callbacks :cycle-counter :inline-constants ' >> $ltf
305 linux | freebsd | netbsd | openbsd | sunos | darwin | win32
)
306 printf ' :linkage-table' >> $ltf
308 if [ "$sbcl_os" = "win32" ]; then
309 # of course it doesn't provide dlopen, but there is
310 # roughly-equivalent magic nevertheless.
311 printf ' :os-provides-dlopen' >> $ltf
313 elif [ "$sbcl_arch" = "x86-64" ]; then
314 printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack :linkage-table' >> $ltf
315 printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf
316 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
317 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
318 printf ' :alien-callbacks :cycle-counter :complex-float-vops' >> $ltf
319 printf ' :float-eql-vops :inline-constants ' >> $ltf
320 elif [ "$sbcl_arch" = "mips" ]; then
321 printf ' :linkage-table' >> $ltf
322 printf ' :stack-allocatable-closures :stack-allocatable-vectors' >> $ltf
323 printf ' :stack-allocatable-lists :stack-allocatable-fixed-objects' >> $ltf
324 printf ' :alien-callbacks' >> $ltf
325 # Use a little C program to try to guess the endianness. Ware
328 # FIXME: integrate to grovel-features, mayhaps
329 $GNUMAKE -C tools-for-build determine-endianness
-I ..
/src
/runtime
330 tools-for-build
/determine-endianness
>> $ltf
331 elif [ "$sbcl_arch" = "ppc" ]; then
332 printf ' :gencgc :stack-allocatable-closures :stack-allocatable-lists' >> $ltf
333 printf ' :linkage-table' >> $ltf
334 if [ "$sbcl_os" = "linux" ]; then
335 # Use a C program to detect which kind of glibc we're building on,
336 # to bandage across the break in source compatibility between
337 # versions 2.3.1 and 2.3.2
339 # FIXME: integrate to grovel-features, mayhaps
340 $GNUMAKE -C tools-for-build where-is-mcontext
-I ..
/src
/runtime
341 tools-for-build
/where-is-mcontext
> src
/runtime
/ppc-linux-mcontext.h ||
(echo "error running where-is-mcontext"; exit 1)
342 elif [ "$sbcl_os" = "darwin" ]; then
343 # We provide a dlopen shim, so a little lie won't hurt
344 printf " :os-provides-dlopen :alien-callbacks" >> $ltf
345 # The default stack ulimit under darwin is too small to run PURIFY.
346 # Best we can do is complain and exit at this stage
347 if [ "`ulimit -s`" = "512" ]; then
348 echo "Your stack size limit is too small to build SBCL."
349 echo "See the limit(1) or ulimit(1) commands and the README file."
353 elif [ "$sbcl_arch" = "sparc" ]; then
354 # Test the compiler in order to see if we are building on Sun
355 # toolchain as opposed to GNU binutils, and write the appropriate
356 # FUNCDEF macro for assembler. No harm in running this on sparc-linux
358 sh tools-for-build
/sparc-funcdef.sh
> src
/runtime
/sparc-funcdef.h
359 if [ "$sbcl_os" = "sunos" ] ||
[ "$sbcl_os" = "linux" ]; then
360 printf ' :linkage-table' >> $ltf
362 printf ' :stack-allocatable-closures :stack-allocatable-lists' >> $ltf
363 elif [ "$sbcl_arch" = "alpha" ]; then
364 printf ' :stack-allocatable-closures :stack-allocatable-lists' >> $ltf
365 elif [ "$sbcl_arch" = "hppa" ]; then
366 printf ' :stack-allocatable-vectors :stack-allocatable-fixed-objects' >> $ltf
367 printf ' :stack-allocatable-lists' >> $ltf
369 # Nothing need be done in this case, but sh syntax wants a placeholder.
373 export sbcl_os sbcl_arch
374 sh tools-for-build
/grovel-features.sh
>> $ltf
376 echo //finishing
$ltf
379 # FIXME: The version system should probably be redone along these lines:
381 # echo //setting up version information.
382 # versionfile=version.txt
383 # cp base-version.txt $versionfile
384 # echo " (built `date -u` by `whoami`@`hostname`)" >> $versionfile
385 # echo 'This is a machine-generated file and should not be edited by hand.' >> $versionfile
387 # Make a unique ID for this build (to discourage people from
388 # mismatching sbcl and *.core files).
389 if [ `uname` = "SunOS" ] ; then
390 # use /usr/xpg4/bin/id instead of /usr/bin/id
391 PATH
=/usr
/xpg
4/bin
:$PATH
393 echo '"'`hostname`-`id -un`-`date +%Y-%m-%d-%H-%M-%S`'"' > output
/build-id.tmp