mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
16 lines
346 B
Go
16 lines
346 B
Go
//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)
|
|
}
|