cmd/link: TestPIESize-internal is broken on openbsd/arm64 after DWARF v5 was enabled #72818
Labels
BugReport
Issues describing a possible bug in the Go implementation.
compiler/runtime
Issues related to the Go compiler and/or runtime.
After DWARF v5 was enabled (https://go-review.googlesource.com/c/go/+/637895), the TestPIESize-internal test fails on openbsd/arm64 with:
https://build.golang.org/log/7ebefb5b8293420696f54d3709dbb0e098b0492e
It is worth noting that running with
-buildmode=pie
does result in external linking being enabled - i.e.InternalLinkPIESupported("openbsd", "arm64")
is false.The program headers for the two binaries are:
Seemingly this passed previously but does not now - does it make sense to compare apples with oranges^W^W^Winternally linked PIE mode with externally linked PIE mode, or should this just skip the internal test if InternalLinkPIESupported returns false?
The text was updated successfully, but these errors were encountered: