From ab0f0459da302a2c81c4c11a7b9b4387c15a7aa0 Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Wed, 1 Feb 2023 12:33:11 -0500 Subject: cmd/dist,internal/platform: reenable the c-archive build mode on ios Also fix misc/cgo/testcarchive to provide a missing CoreFoundation dependency at link time. Fixes #58221. Updates #58172. Updates #58225. Change-Id: Ib8b6e52ed2914596615da4c427df2fe984722de6 Reviewed-on: https://go-review.googlesource.com/c/go/+/463752 Run-TryBot: Bryan Mills Auto-Submit: Bryan Mills TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui --- misc/cgo/testcarchive/carchive_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'misc') diff --git a/misc/cgo/testcarchive/carchive_test.go b/misc/cgo/testcarchive/carchive_test.go index 30e12be6c6..8a39c24a6d 100644 --- a/misc/cgo/testcarchive/carchive_test.go +++ b/misc/cgo/testcarchive/carchive_test.go @@ -132,6 +132,15 @@ func testMain(m *testing.M) int { // in .text section. cc = append(cc, "-Wl,-bnoobjreorder") } + if GOOS == "ios" { + // Linking runtime/cgo on ios requires the CoreFoundation framework because + // x_cgo_init uses CoreFoundation APIs to switch directory to the app root. + // + // TODO(#58225): This special case probably should not be needed. + // runtime/cgo is a very low-level package, and should not provide + // high-level behaviors like changing the current working directory at init. + cc = append(cc, "-framework", "CoreFoundation") + } libbase := GOOS + "_" + GOARCH if runtime.Compiler == "gccgo" { libbase = "gccgo_" + libgodir + "_fPIC" -- cgit v1.2.3-54-g00ecf