X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-config.sh;h=055460019c42c342075415610d0f684571aa4d83;hb=007bcd5aac2f3a1e714563bd39f7a2db2d0bf7c2;hp=7c6997dccdd4bd2a7d5585a7553fd3bdd23fc5b0;hpb=9b1fade83db8453b75b8c7380eb12ce41b5b889c;p=sbcl.git diff --git a/make-config.sh b/make-config.sh index 7c6997d..0554600 100644 --- a/make-config.sh +++ b/make-config.sh @@ -53,6 +53,9 @@ case `uname` in CYGWIN* | WindowsNT | MINGW*) sbcl_os="win32" ;; + HP-UX) + sbcl_os="hpux" + ;; *) echo unsupported OS type: `uname` exit 1 @@ -110,6 +113,7 @@ case `uname -m` in ppc64) guessed_sbcl_arch=ppc ;; Power*Macintosh) guessed_sbcl_arch=ppc ;; parisc) guessed_sbcl_arch=hppa ;; + 9000/800) guessed_sbcl_arch=hppa ;; mips*) guessed_sbcl_arch=mips ;; *) # If we're not building on a supported target architecture, we @@ -119,6 +123,11 @@ case `uname -m` in ;; esac +# Under Solaris, uname -m returns "i86pc" even if CPU is amd64. +if [ "$sbcl_os" = "sunos" ] && [ `isainfo -k` = "amd64" ]; then + guessed_sbcl_arch=x86-64 +fi + echo //setting up CPU-architecture-dependent information sbcl_arch=${SBCL_ARCH:-$guessed_sbcl_arch} echo sbcl_arch=\"$sbcl_arch\" @@ -188,6 +197,14 @@ case "$sbcl_os" in link_or_copy $sbcl_arch-osf1-os.h target-arch-os.h link_or_copy osf1-os.h target-os.h ;; + hpux) + printf ' :unix' >> $ltf + printf ' :elf' >> $ltf + printf ' :hpux' >> $ltf + link_or_copy Config.$sbcl_arch-hpux Config + link_or_copy $sbcl_arch-hpux-os.h target-arch-os.h + link_or_copy hpux-os.h target-os.h + ;; *bsd) printf ' :unix' >> $ltf printf ' :bsd' >> $ltf @@ -238,7 +255,7 @@ case "$sbcl_os" in printf ' :unix' >> $ltf printf ' :elf' >> $ltf printf ' :sunos' >> $ltf - if [ $sbcl_arch = "x86" ]; then + if [ $sbcl_arch = "x86" ] || [ $sbcl_arch = "amd64" ]; then printf ' :sb-lutex' >> $ltf fi link_or_copy Config.$sbcl_arch-sunos Config @@ -282,7 +299,7 @@ cd "$original_dir" # similar with :STACK-GROWS-FOOWARD, too. -- WHN 2002-03-03 if [ "$sbcl_arch" = "x86" ]; then printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack' >> $ltf - printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop' >> $ltf + printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf printf ' :stack-allocatable-closures :alien-callbacks :cycle-counter' >> $ltf case "$sbcl_os" in linux | freebsd | netbsd | openbsd | sunos | darwin | win32) @@ -295,7 +312,7 @@ if [ "$sbcl_arch" = "x86" ]; then fi elif [ "$sbcl_arch" = "x86-64" ]; then printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack :linkage-table' >> $ltf - printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop' >> $ltf + printf ' :compare-and-swap-vops :unwind-to-frame-and-call-vop :raw-instance-init-vops' >> $ltf printf ' :stack-allocatable-closures :alien-callbacks :cycle-counter' >> $ltf elif [ "$sbcl_arch" = "mips" ]; then printf ' :linkage-table' >> $ltf