From: Taylor R Campbell Date: Mon, 2 Nov 2009 21:46:15 +0000 (-0500) Subject: Hook up x86-64 in the compiler and microcode's configure scripts. X-Git-Tag: 20100708-Gtk~274 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e27e4371e4eea8b636688b928cb94958d71e4191;p=mit-scheme.git Hook up x86-64 in the compiler and microcode's configure scripts. --- diff --git a/src/compiler/choose-machine.sh b/src/compiler/choose-machine.sh index c6ccafc27..0dd75e795 100755 --- a/src/compiler/choose-machine.sh +++ b/src/compiler/choose-machine.sh @@ -81,6 +81,9 @@ hppa-* | hppa1.[01]-* | hppa2.?-*) vax-*) chosen vax ;; +x86_64-*) + chosen x86-64 + ;; *) chosen none ;; diff --git a/src/microcode/configure.ac b/src/microcode/configure.ac index 4a07a653b..b63c785b5 100644 --- a/src/microcode/configure.ac +++ b/src/microcode/configure.ac @@ -283,11 +283,6 @@ yes) i?86) SCM_ARCH=i386 ;; - # x86_64) - # SCM_ARCH=i386 - # CFLAGS="${CFLAGS} -m32" - # LDFLAGS="${LDFLAGS} -m32" - # ;; m68k|m680?0) SCM_ARCH=mc68k ;; @@ -297,6 +292,9 @@ yes) vax) SCM_ARCH=vax ;; + x86_64) + SCM_ARCH=x86-64 + ;; esac ;; c)