Skip to content

Commit 2bb3c9a

Browse files
committed
Add Solaris and Illumos targets in cross-compile.sh
1 parent f2454c9 commit 2bb3c9a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tools/cross-compile.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,16 @@ echo "Linux ARM 64"
7474
GOOS=linux GOARCH=arm64 make build
7575
create_artefact_generic "linux-arm64"
7676

77+
# Solaris
78+
echo "Solaris 64"
79+
GOOS=solaris GOARCH=amd64 make build
80+
create_artefact_generic "solaris64"
81+
82+
# Illumos
83+
echo "Illumos 64"
84+
GOOS=illumos GOARCH=amd64 make build
85+
create_artefact_generic "illumos64"
86+
7787
# NetBSD
7888
echo "NetBSD 64"
7989
GOOS=netbsd GOARCH=amd64 make build

0 commit comments

Comments
 (0)