aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2022-08-31 15:19:59 +0200
committerRon Evans <[email protected]>2022-09-01 13:17:37 +0200
commitc6db89ff05ab598c6ce51b092b835cb01ca9d2c8 (patch)
treef0c3eb9661645163672cd4c0967c29e86b4662d9
parent61d651c947018f0161ed955f8f19e3c0dda507d3 (diff)
downloadtinygo-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.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.go b/main.go
index 9addc7748..7288ad543 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())