mirror of
https://github.com/golang/go
synced 2024-11-14 08:10:22 -07:00
754f707f5f
Change the linker to use a copy of the C compiler support library, libgcc.a, when doing internal linking. This will be used to satisfy any undefined symbols referenced by host objects. Change the dist tool to copy the support library into a new directory tree under GOROOT/pkg/libgcc. This ensures that libgcc is available even when building Go programs on a system that has no C compiler. The C compiler is required when building the Go installation in the first place, but is not required thereafter. Change the go tool to not link libgcc into cgo objects. Correct the linker handling of a weak symbol in an ELF input object to not always create a new symbol, but to use an existing symbol if there is one; this is necessary on freebsd-amd64, where libgcc contains a weak definition of compilerrt_abort_impl. Fixes #9510. Change-Id: I1ab28182263238d9bcaf6a42804e5da2a87d8778 Reviewed-on: https://go-review.googlesource.com/16741 Reviewed-by: Russ Cox <rsc@golang.org>
25 lines
514 B
Go
25 lines
514 B
Go
// Copyright 2015 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.
|
|
|
|
// Test that we can link together two different cgo packages that both
|
|
// use the same libgcc function.
|
|
|
|
package cgotest
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"./issue9510a"
|
|
"./issue9510b"
|
|
)
|
|
|
|
func test9510(t *testing.T) {
|
|
if runtime.GOARCH == "arm" {
|
|
t.Skip("skipping because libgcc may be a Thumb library")
|
|
}
|
|
issue9510a.F(1, 1)
|
|
issue9510b.F(1, 1)
|
|
}
|