mirror of
https://github.com/golang/go
synced 2024-11-08 07:36:21 -07:00
f46a5b1e45
This CL adds support of PIE internal linking on darwin/amd64. This is also preparation for supporting internal linking on darwin/arm64 (macOS), which requires PIE for everything. Updates #38485. Change-Id: I2ed58583dcc102f5e0521982491fc7ba6f2754ed Reviewed-on: https://go-review.googlesource.com/c/go/+/261642 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com>
13 lines
273 B
Go
13 lines
273 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.
|
|
|
|
// +build windows static darwin,internal_pie
|
|
|
|
package cgotest
|
|
|
|
import "testing"
|
|
|
|
func test4029(t *testing.T) {
|
|
}
|