From e27e4371e4eea8b636688b928cb94958d71e4191 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Mon, 2 Nov 2009 16:46:15 -0500 Subject: [PATCH] Hook up x86-64 in the compiler and microcode's configure scripts. --- src/compiler/choose-machine.sh | 3 +++ src/microcode/configure.ac | 8 +++----- 2 files changed, 6 insertions(+), 5 deletions(-) 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) -- 2.25.1