aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/build_arm.txt
blob: ff2a36456e406d4444ee82bd14bc14ce20806bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[short] skip 'skipping cross-compile in short mode'

env GOARCH=arm
env GOOS=linux
env GOARM=5

go build hello.go
! stderr 'unable to find math.a'

-- hello.go --
package main

func main() {}