mirror of
https://github.com/golang/go
synced 2024-11-14 15:10:54 -07:00
1df438f79c
Change-Id: Ie9fea9814c850b084562ab2349b54d9ad9fa1f4a Reviewed-on: https://go-review.googlesource.com/27825 Run-TryBot: David Crawshaw <crawshaw@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
28 lines
540 B
Bash
Executable File
28 lines
540 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2016 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
|
|
|
|
if [ ! -f src/host/host.go ]; then
|
|
cwd=$(pwd)
|
|
echo "misc/cgo/testplugin/test.bash is running in $cwd" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
goos=$(go env GOOS)
|
|
goarch=$(go env GOARCH)
|
|
|
|
function cleanup() {
|
|
rm -f plugin1.so host pkg
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
rm -rf pkg
|
|
|
|
GOPATH=$(pwd) go build -buildmode=plugin plugin1
|
|
GOPATH=$(pwd) go build host
|
|
|
|
LD_LIBRARY_PATH=$(pwd) ./host
|