Sign in
swiftshader
/
SwiftShader
/
0a9f0179ddef5b1ed14ff19ca2ac7f340b7272d5
/
.
/
third_party
/
llvm-7.0
/
llvm
/
bindings
/
go
/
conftest.go
blob: d97fb89f7c2b6746fcc47b667cee6acc26e88311 [
file
] [
log
] [
blame
]
package main
import (
"go/build"
"os"
)
// Tests that the Go compiler is at least version 1.2.
func main() {
for _, tag := range build.Default.ReleaseTags {
if tag == "go1.2" {
os.Exit(0)
}
}
os.Exit(1)
}