mirror of
https://github.com/golang/go
synced 2024-11-06 00:36:14 -07:00
36f456c789
This test requires external linking, but we don't yet implement external linking on ppc64 (tracked in issue #8912). Disable the test on ppc64 until external linking is implemented. This makes all.bash pass on ppc64le. Change-Id: I741498d4d9321607e7a65792a33faf8187bd18e4 Reviewed-on: https://go-review.googlesource.com/2908 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
29 lines
682 B
Bash
Executable File
29 lines
682 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# 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
|
|
|
|
if [ "$(uname -m)" == ppc64 -o "$(uname -m)" == ppc64le ]; then
|
|
# External linking not implemented on ppc64
|
|
echo "skipping test on ppc64 (issue #8912)"
|
|
exit
|
|
fi
|
|
|
|
args=
|
|
dyld_envvar=LD_LIBRARY_PATH
|
|
ext=so
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
args="-undefined suppress -flat_namespace"
|
|
dyld_envvar=DYLD_LIBRARY_PATH
|
|
ext=dylib
|
|
fi
|
|
|
|
dylib=libcgosotest.$ext
|
|
$(go env CC) $(go env GOGCCFLAGS) -shared $args -o $dylib cgoso_c.c
|
|
go build main.go
|
|
|
|
eval "$dyld_envvar"=. ./main
|
|
rm -rf $dylib main *.dSYM
|