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