mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
346 B
15 lines
346 B
//go:build !byollvm
|
|
|
|
package builder
|
|
|
|
import "errors"
|
|
|
|
const hasBuiltinTools = false
|
|
|
|
// RunTool runs the given tool (such as clang).
|
|
//
|
|
// This version doesn't actually run the tool: TinyGo has not been compiled by
|
|
// statically linking to LLVM.
|
|
func RunTool(tool string, args ...string) error {
|
|
return errors.New("cannot run tool: " + tool)
|
|
}
|
|
|