Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
fix: update builder
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Dec 1, 2023
1 parent 13a234c commit 73451e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -eo pipefail
set -eox pipefail

if [[ "${DEBUG}" == "true" ]]; then
set -x
Expand All @@ -15,7 +15,8 @@ if [[ "$ARCH" = "aarch64" ]]; then
farch=arm64
darch=linux/arm64
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu binutils-aarch64-linux-gnu > /dev/null 2>&1
# export CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ CC_host="gcc -m32" CXX_host="g++ -m32"
export CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++
# CC_host="gcc -m32" CXX_host="g++ -m32"
export DEVELOPMENT_SKIP_GETTING_ASSET=true
fi

Expand Down

0 comments on commit 73451e5

Please sign in to comment.