From c44e67540ac62e3977c6a76a99b33cfbdab50405 Mon Sep 17 00:00:00 2001
From: Roddy Rappaport <roddy.rappaport@gmail.com>
Date: Sat, 21 Dec 2024 12:07:12 +0200
Subject: [PATCH] Added X64 build prefix

There's no real reason to assume the host machine is X64.
---
 src/compilation/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compilation/build.sh b/src/compilation/build.sh
index b5bb48b..78181a4 100755
--- a/src/compilation/build.sh
+++ b/src/compilation/build.sh
@@ -43,7 +43,7 @@ function set_compliation_variables() {
         CROSS=mipsel-linux-gnu-
         export HOST=mipsel-linux-gnu
     elif [[ "$target_arch" == "x86_64" ]]; then
-        CROSS=""
+        CROSS=x86_64-linux-gnu-
         export HOST=x86_64-linux-gnu
     fi