We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d9b82 commit f9df697Copy full SHA for f9df697
2 files changed
.cargo/config.toml
@@ -1,2 +1,5 @@
1
[target.aarch64-unknown-linux-musl]
2
linker = "aarch64-linux-musl-ld"
3
+
4
+[target.x86_64-unknown-linux-gnu]
5
+linker = "x86_64-linux-gnu-gcc"
Makefile
@@ -3,15 +3,15 @@ ifneq (,$(wildcard ./.env))
export
endif
6
-BUILD_DIR="target/aarch64-unknown-linux-musl/release"
+BUILD_DIR="target/x86_64-unknown-linux-gnu/release"
7
BIN_NAME="jonathansm"
8
9
.PHONY: all pi mac test clean deploy
10
11
all: pi mac
12
13
pi:
14
- cargo build --release --target=aarch64-unknown-linux-musl
+ cargo build --release --target=x86_64-unknown-linux-gnu
15
16
mac:
17
cargo build --release
0 commit comments