aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/build.sh')
-rwxr-xr-xscripts/ci/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh
index ae50bf065..38127edc1 100755
--- a/scripts/ci/build.sh
+++ b/scripts/ci/build.sh
@@ -4,7 +4,7 @@ set -e
cd "$(dirname "$0")"/../..
./bootstrap
./configure \
- --host=${TARGET_ARCH} --build=x86_64-linux-gnu \
+ --host=${TARGET_ARCH} --build=${BUILD_ARCH:-x86_64-linux-gnu} \
--prefix=/opt/odp \
${CONF}
@@ -47,7 +47,7 @@ sysctl vm.nr_hugepages=1000
mkdir -p /mnt/huge
mount -t hugetlbfs nodev /mnt/huge
-if [ "$TARGET_ARCH" = "x86_64-linux-gnu" ]
+if [ -z "$TARGET_ARCH" ] || [ "$TARGET_ARCH" == "$BUILD_ARCH" ]
then
LD_LIBRARY_PATH="/opt/odp/lib:$LD_LIBRARY_PATH" ./odp_hello_inst_dynamic
fi