1.0.26.20: tighter VECTOR-PUSH-EXTEND argument type
[sbcl.git] / make-config.sh
index e0e439d..0554600 100644 (file)
@@ -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