diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-06-11 19:16:34 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-06-11 19:16:34 +0000 |
commit | 87cbbc45a950f382853e2e4cf494cdfab62f0e5b (patch) | |
tree | 0b7b78b0758b88547ca25cfe34fb1a07373d739f /libgo/configure.ac | |
parent | c5ce6f30886eed5f0bf8a98114bafbd65066b94f (diff) | |
download | gcc-87cbbc45a950f382853e2e4cf494cdfab62f0e5b.zip gcc-87cbbc45a950f382853e2e4cf494cdfab62f0e5b.tar.gz gcc-87cbbc45a950f382853e2e4cf494cdfab62f0e5b.tar.bz2 |
libgo: add riscv and js/wasm as known targets
Incorporates cut down versions of https://golang.org/cl/102835 and
https://golang.org/cl/106256 from the master sources.
This will tell go/build to skip files with those tags.
Reviewed-on: https://go-review.googlesource.com/117996
From-SVN: r261451
Diffstat (limited to 'libgo/configure.ac')
-rw-r--r-- | libgo/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/configure.ac b/libgo/configure.ac index 9f4bf50..3cee2c0 100644 --- a/libgo/configure.ac +++ b/libgo/configure.ac @@ -224,10 +224,10 @@ AC_SUBST(USE_DEJAGNU) # - libgo/go/syscall/endian_XX.go # - possibly others # - possibly update files in libgo/go/internal/syscall/unix -ALLGOARCH="386 alpha amd64 amd64p32 arm armbe arm64 arm64be ia64 m68k mips mipsle mips64 mips64le mips64p32 mips64p32le nios2 ppc ppc64 ppc64le riscv64 s390 s390x sh shbe sparc sparc64" +ALLGOARCH="386 alpha amd64 amd64p32 arm armbe arm64 arm64be ia64 m68k mips mipsle mips64 mips64le mips64p32 mips64p32le nios2 ppc ppc64 ppc64le riscv riscv64 s390 s390x sh shbe sparc sparc64 wasm" # All known GOARCH family values. -ALLGOARCHFAMILY="I386 ALPHA AMD64 ARM ARM64 IA64 M68K MIPS MIPS64 NIOS2 PPC PPC64 RISCV64 S390 S390X SH SPARC SPARC64" +ALLGOARCHFAMILY="I386 ALPHA AMD64 ARM ARM64 IA64 M68K MIPS MIPS64 NIOS2 PPC PPC64 RISCV RISCV64 S390 S390X SH SPARC SPARC64 WASM" GOARCH=unknown case ${host} in |