summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
m---------core/src/tbox/tbox0
2 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index e14536e6e..dc174d9ea 100755
--- a/configure
+++ b/configure
@@ -712,8 +712,10 @@ is_host() {
# detect host architecture
os_arch=`uname -m | tr '[A-Z]' '[a-z]'`
-if test_eq "${os_arch}" "i686"; then
+if test_eq "${os_arch}" "i686" "i86pc"; then
os_arch="i386"
+elif test_eq "${os_arch}" "amd64"; then
+ os_arch="x86_64"
elif test_eq "${os_arch}" "aarch64" || test_eq "${os_arch}" "arm64"; then
os_arch="arm64"
elif string_contains "${os_arch}" "armv7"; then
diff --git a/core/src/tbox/tbox b/core/src/tbox/tbox
-Subproject a0577a18b0a43cf1585a97a71cd29c3ee477b51
+Subproject 0ce2d9bc437172e228000e542a0f617fb31a9d3