cs: add aarch64-linux
Just a few configuration lines here, since all of the porting work was at the Chez Scheme level.
This commit is contained in:
parent
38a2b28f85
commit
7dda76b7ce
6
racket/src/cs/c/configure
vendored
6
racket/src/cs/c/configure
vendored
|
@ -4789,6 +4789,9 @@ case "$MACH_HOST_CPU" in
|
||||||
arm*)
|
arm*)
|
||||||
MACH="${thread_prefix}arm32${MACH_OS}"
|
MACH="${thread_prefix}arm32${MACH_OS}"
|
||||||
;;
|
;;
|
||||||
|
aarch64*)
|
||||||
|
MACH="${thread_prefix}arm64${MACH_OS}"
|
||||||
|
;;
|
||||||
power*)
|
power*)
|
||||||
MACH="${thread_prefix}ppc32${MACH_OS}"
|
MACH="${thread_prefix}ppc32${MACH_OS}"
|
||||||
;;
|
;;
|
||||||
|
@ -4843,6 +4846,9 @@ elif test "${build_os}_${build_cpu}" != "${host_os}_${host_cpu}" ; then
|
||||||
arm*)
|
arm*)
|
||||||
BUILD_MACH="${BUILD_THREAD_PREFIX}arm32${BUILD_OS}"
|
BUILD_MACH="${BUILD_THREAD_PREFIX}arm32${BUILD_OS}"
|
||||||
;;
|
;;
|
||||||
|
aarch64*)
|
||||||
|
BUILD_MACH="${BUILD_THREAD_PREFIX}arm64${BUILD_OS}"
|
||||||
|
;;
|
||||||
power*)
|
power*)
|
||||||
BUILD_MACH="${BUILD_THREAD_PREFIX}ppc32${BUILD_OS}"
|
BUILD_MACH="${BUILD_THREAD_PREFIX}ppc32${BUILD_OS}"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -338,6 +338,9 @@ case "$MACH_HOST_CPU" in
|
||||||
arm*)
|
arm*)
|
||||||
MACH="${thread_prefix}arm32${MACH_OS}"
|
MACH="${thread_prefix}arm32${MACH_OS}"
|
||||||
;;
|
;;
|
||||||
|
aarch64*)
|
||||||
|
MACH="${thread_prefix}arm64${MACH_OS}"
|
||||||
|
;;
|
||||||
power*)
|
power*)
|
||||||
MACH="${thread_prefix}ppc32${MACH_OS}"
|
MACH="${thread_prefix}ppc32${MACH_OS}"
|
||||||
;;
|
;;
|
||||||
|
@ -392,6 +395,9 @@ elif test "${build_os}_${build_cpu}" != "${host_os}_${host_cpu}" ; then
|
||||||
arm*)
|
arm*)
|
||||||
BUILD_MACH="${BUILD_THREAD_PREFIX}arm32${BUILD_OS}"
|
BUILD_MACH="${BUILD_THREAD_PREFIX}arm32${BUILD_OS}"
|
||||||
;;
|
;;
|
||||||
|
aarch64*)
|
||||||
|
BUILD_MACH="${BUILD_THREAD_PREFIX}arm64${BUILD_OS}"
|
||||||
|
;;
|
||||||
power*)
|
power*)
|
||||||
BUILD_MACH="${BUILD_THREAD_PREFIX}ppc32${BUILD_OS}"
|
BUILD_MACH="${BUILD_THREAD_PREFIX}ppc32${BUILD_OS}"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
[(a6le ta6le) "x86_64-linux"]
|
[(a6le ta6le) "x86_64-linux"]
|
||||||
[(i3le ti3le) "i386-linux"]
|
[(i3le ti3le) "i386-linux"]
|
||||||
[(arm32le tarm32le) "arm-linux"]
|
[(arm32le tarm32le) "arm-linux"]
|
||||||
|
[(arm64le tarm64le) "aarch64-linux"]
|
||||||
[(ppc32le tppc32le) "ppc-linux"]
|
[(ppc32le tppc32le) "ppc-linux"]
|
||||||
[(i3ob ti3ob) "i386-openbsd"]
|
[(i3ob ti3ob) "i386-openbsd"]
|
||||||
[(a6ob ta6ob) "x86_64-openbsd"]
|
[(a6ob ta6ob) "x86_64-openbsd"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user