Added X64 build prefix

There's no real reason to assume the host machine is X64.
This commit is contained in:
Roddy Rappaport 2024-12-21 12:07:12 +02:00
parent 00a8738392
commit cc1c9763b2

View File

@ -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