diff options
author | Ayke van Laethem <[email protected]> | 2022-08-31 15:19:59 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-09-01 13:17:37 +0200 |
commit | c6db89ff05ab598c6ce51b092b835cb01ca9d2c8 (patch) | |
tree | f0c3eb9661645163672cd4c0967c29e86b4662d9 | |
parent | 61d651c947018f0161ed955f8f19e3c0dda507d3 (diff) | |
download | tinygo-c6db89ff05ab598c6ce51b092b835cb01ca9d2c8.tar.gz tinygo-c6db89ff05ab598c6ce51b092b835cb01ca9d2c8.zip |
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
-rw-r--r-- | main.go | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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()) |