summaryrefslogtreecommitdiff
path: root/misc/cgo/testso/test.bash
blob: ecef873c8d61bf0649ac8af269a5531520ab8dd2 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Copyright 2011 The Go Authors.  All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

set -e
gcc $(go env GOGCCFLAGS) -shared -o libcgosotest.so cgoso_c.c
go build main.go
LD_LIBRARY_PATH=. ./main
rm -f libcgosotest.so main