github.com/aykevl/tinygo@v0.5.0/commands.go (about) 1 // +build !darwin 2 3 package main 4 5 // commands used by the compilation process might have different file names on Linux than those used on macOS. 6 var commands = map[string]string{ 7 "clang": "clang-8", 8 "ld.lld": "ld.lld-8", 9 "wasm-ld": "wasm-ld-8", 10 }