mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
12 lines
277 B
Go
12 lines
277 B
Go
// +build !darwin
|
|
|
|
package main
|
|
|
|
// commands used by the compilation process might have different file names on Linux than those used on macOS.
|
|
var commands = map[string]string{
|
|
"ar": "llvm-ar-8",
|
|
"clang": "clang-8",
|
|
"ld.lld": "ld.lld-8",
|
|
"wasm-ld": "wasm-ld-8",
|
|
}
|