From d23669db7de13aec74296ae9bed8bb707f83b773 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 25 May 2023 08:32:13 -0400 Subject: all: fix buildall.bash Disable the android and ios builds since cross-compiling fails there. Also make runtime/internal/wasitest not build on systems that don't have syscall.Mkfifo for it to use (including, ironically, wasm itself). Change-Id: I28eb1f216f9952f81a107056e97ee38e350f9287 Reviewed-on: https://go-review.googlesource.com/c/go/+/498255 Reviewed-by: Austin Clements Run-TryBot: Russ Cox TryBot-Result: Gopher Robot --- src/buildall.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/buildall.bash') diff --git a/src/buildall.bash b/src/buildall.bash index e4e3ec37ec..4e9b15bf4b 100755 --- a/src/buildall.bash +++ b/src/buildall.bash @@ -36,7 +36,8 @@ fi GOROOT="$(cd .. && pwd)" gettargets() { - ../bin/go tool dist list | sed -e 's|/|-|' + ../bin/go tool dist list | sed -e 's|/|-|' | + egrep -v '^(android|ios)' # need C toolchain even for cross-compiling echo linux-arm-arm5 } -- cgit v1.3-5-g9baa