aboutsummaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorqmuntal <quimmuntal@gmail.com>2026-03-19 10:44:39 +0100
committerQuim Muntal <quimmuntal@gmail.com>2026-03-31 12:52:46 -0700
commitfdd485c5f1701dfadb3a74d95c606329ec6463aa (patch)
tree13ee000266f676cbfa0b148cbf24f737f1d67442 /src/cmd
parent14a6bf0e90c0e22dcbf6dcf367604ac1ec627121 (diff)
downloadgo-fdd485c5f1701dfadb3a74d95c606329ec6463aa.tar.xz
runtime/cgo: remove SIGSEGV emulation on iOS
The misc/ios exec wrapper doesn't support lldb since https://go.dev/cl/573175. This means that the SIGSEGV emulation code in the cgo signal handling on iOS is no longer needed, and can be removed. Cq-Include-Trybots: luci.golang.try:gotip-darwin-arm64_26 Change-Id: I39827cb20756e4730352d87cb3514bb6a3f1cee8 Reviewed-on: https://go-review.googlesource.com/c/go/+/756800 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/dist/test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index b09c3f2ce8..99488270d3 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -437,9 +437,6 @@ func (opts *goTest) buildArgs(t *tester) (build, run, pkgs, testFlags []string,
run = append(run, "-short")
}
var tags []string
- if t.iOS() {
- tags = append(tags, "lldb")
- }
if noOpt {
tags = append(tags, "noopt")
}