Source file src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go
1 // Copyright 2024 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 //go:build (ppc64 || ppc64le) && internal 6 7 package cgotest 8 9 import "testing" 10 11 // If gcc is used, and linking internally, __mulsc3 and __muldc3 12 // will be linked in from libgcc which make several R_PPC64_TOC16_DS 13 // relocations which may not be resolvable with the internal linker. 14 func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") } 15 func test9510(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") } 16