github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/misc/cgo/testcdefs/test.bash (about) 1 # Copyright 2013 The Go Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style 3 # license that can be found in the LICENSE file. 4 5 # Just add issue file prefixes to this list if more issues come up 6 FILE_PREFIXES="cdefstest" 7 8 for FP in $FILE_PREFIXES 9 do 10 go tool cgo -cdefs ${FP}.go > ${FP}.h 11 done 12 13 go build . 14 EXIT=$? 15 rm -rf _obj main *.h 16 exit $EXIT