We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db70c5 commit ee6c1e4Copy full SHA for ee6c1e4
justfile
@@ -17,3 +17,9 @@ sync-repo dest *args:
17
18
flamegraph-macos bench_filter:
19
CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --root --bench possum -- --bench '{{ bench_filter }}'
20
+
21
+build-supported-targets:
22
+ for a in `cat supported-targets`; do just build-target "$a"; done
23
24
+build-target target:
25
+ cargo build --release --target {{target}}
supported-targets
@@ -0,0 +1,5 @@
1
+x86_64-pc-windows-gnu
2
+x86_64-unknown-linux-gnu
3
+aarch64-unknown-linux-gnu
4
+arm-unknown-linux-gnueabi
5
+aarch64-apple-darwin
0 commit comments