From c6db89ff05ab598c6ce51b092b835cb01ca9d2c8 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Wed, 31 Aug 2022 15:19:59 +0200 Subject: [PATCH] main: remove GOARM from `tinygo info` I think it is more confusing than helpful because it is only relevant when compiling an actual linux/arm binary (and in that case, it is also included in the LLVM triple). See: https://github.com/tinygo-org/tinygo/issues/3034 --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index 9addc774..7288ad54 100644 --- a/main.go +++ b/main.go @@ -1668,7 +1668,6 @@ func main() { fmt.Printf("LLVM triple: %s\n", config.Triple()) fmt.Printf("GOOS: %s\n", config.GOOS()) fmt.Printf("GOARCH: %s\n", config.GOARCH()) - fmt.Printf("GOARM: %s\n", config.GOARM()) fmt.Printf("build tags: %s\n", strings.Join(config.BuildTags(), " ")) fmt.Printf("garbage collector: %s\n", config.GC()) fmt.Printf("scheduler: %s\n", config.Scheduler())