From 89d4cb951a2232a60891b14a79047a37d66c585e Mon Sep 17 00:00:00 2001 From: rachitchokshi Date: Sun, 9 Sep 2018 16:56:39 -0700 Subject: [PATCH] Updated before_deploy.bash to call version of strip specific to aarch64 target --- ci/before_deploy.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/before_deploy.bash b/ci/before_deploy.bash index ea5c1725..7cc4d874 100755 --- a/ci/before_deploy.bash +++ b/ci/before_deploy.bash @@ -19,6 +19,8 @@ pack() { if [[ $TARGET == "arm-unknown-linux-gnueabihf" ]]; then gcc_prefix="arm-linux-gnueabihf-" + elif [[ $TARGET == "aarch64-unknown-linux-gnu" ]]; then + gcc_prefix="aarch64-linux-gnu-" else gcc_prefix="" fi