Updated before_deploy.bash to call version of strip specific to aarch64 target

This commit is contained in:
rachitchokshi 2018-09-09 16:56:39 -07:00 committed by David Peter
parent e9681bf22d
commit 89d4cb951a
1 changed files with 2 additions and 0 deletions

View File

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