Commit 921e7dfd authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/dist: don't run internal link tests on arm or darwin/arm64

Change-Id: I373a64fc30dee804d99e106d4627b780e1846917
Reviewed-on: https://go-review.googlesource.com/16999Reviewed-by: default avatarDavid Crawshaw <crawshaw@golang.org>
parent 5af2be86
......@@ -370,6 +370,16 @@ func (t *tester) registerTests() {
break
}
// ARM libgcc may be Thumb, which internal linking does not support.
if t.goarch == "arm" {
break
}
// Darwin ARM64 fails with internal linking.
if t.goos == "darwin" && t.goarch == "arm64" {
break
}
pkg := pkg
t.tests = append(t.tests, distTest{
name: "nolibgcc:" + pkg,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment