aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrefresh.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/refresh.sh b/refresh.sh
index 542d4da..d94502d 100755
--- a/refresh.sh
+++ b/refresh.sh
@@ -10,8 +10,8 @@ scp -r public/* root@rpi3:/var/www/mfashby.net/
# build & install comments app
pushd comments
-cargo build --release
-scp target/release/comments root@rpi3:/usr/local/bin/comments
+RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release
+scp target/aarch64-unknown-linux-gnu/release/comments root@rpi3:/usr/local/bin/comments
scp comments.service root@rpi3:/etc/systemd/system/comments.service
ssh root@rpi3 -C systemctl daemon-reload
ssh root@rpi3 -C systemctl restart comments