mirror of
https://github.com/golang/go
synced 2024-11-20 00:04:43 -07:00
7fdb0292a5
Some systems, like Ubuntu, pass --build-id when linking. The effect is to put a note in the output file. This is not useful when generating an object file with the -r option, as it eventually causes multiple build ID notes in the final executable, all but one of which are for tiny portions of the file and are therefore useless. Disable that by passing an explicit --build-id=none when linking with -r on systems that might do this. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/119460043
12 lines
342 B
Go
12 lines
342 B
Go
// Copyright 2012 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.
|
|
|
|
package cgotest
|
|
|
|
import "testing"
|
|
|
|
func TestSetgid(t *testing.T) { testSetgid(t) }
|
|
func Test6997(t *testing.T) { test6997(t) }
|
|
func TestBuildID(t *testing.T) { testBuildID(t) }
|