Skip to content

Commit 196fe24

Browse files
committed
Add some more targets to the Makefile
1 parent a6e025e commit 196fe24

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Targets available via Rustup that are supported.
2-
TARGETS ?= "x86_64-apple-darwin" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-pc-windows-gnu"
2+
TARGETS ?= "aarch64-apple-ios" "aarch64-linux-android" "x86_64-apple-darwin" "x86_64-pc-windows-msvc" "x86_64-sun-solaris" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd"
33

44
test:
55
cargo test --all-features
66

7-
# Test everythubg for the current OS/architecture and check for all targets in
7+
# Test everything for the current OS/architecture and check all targets in
88
# $TARGETS.
99
test_all: check_all_targets
1010
cargo hack test --feature-powerset --skip guide,extra-docs,tcp,udp,uds,pipe,os-util
@@ -15,6 +15,7 @@ check_all_targets: $(TARGETS)
1515
$(TARGETS):
1616
cargo hack check --target $@ --feature-powerset --skip guide,extra-docs,tcp,udp,uds,pipe,os-util
1717

18+
# Installs all required targets for `check_all_targets`.
1819
install_targets:
1920
rustup target add $(TARGETS)
2021

0 commit comments

Comments
 (0)