mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
04e8f44370
Baremetal systems usually pretend to be GOOS=linux, so an extra build tag is needed here.
10 lines
148 B
Go
10 lines
148 B
Go
// +build !linux baremetal
|
|
|
|
package os
|
|
|
|
import "errors"
|
|
|
|
func Executable() (string, error) {
|
|
return "", errors.New("Executable not implemented")
|
|
}
|