Apple's /usr/bin/symbols is unable to parse DWARF data embedded by the golang compiler, making iOS app using gomobile hard to debug because their crash reports are missing symbols.
package main
import "C"
import "log"
func main() {
log.Printf("foo")
}
$ go version
go version devel +3b6f9a0b9b Fri Apr 12 17:45:10 2019 -0700 darwin/amd64
$ CGO_CFLAGS=-g go build -buildmode=c-archive -o test.a test.go
$ ar xv test.a
x - go.o
x - 000000.o
$ symbols go.o
go.o [x86_64, 0.012018 seconds]:
null-uuid go.o [OBJECT, Empty]
0x0000000000000000 (0x3332de) SEGMENT
$ symbols 000000.o
000000.o [x86_64, 0.000155 seconds]:
null-uuid 000000.o [OBJECT, FaultedFromDisk]
0x0000000000000000 ( 0x98) SEGMENT
0x0000000000000000 ( 0x24) __DWARF __apple_names
0x0000000000000024 ( 0x24) __DWARF __apple_objc
0x0000000000000048 ( 0x24) __DWARF __apple_namespac
0x000000000000006c ( 0x2c) __DWARF __apple_types
$ symbols -v
symbols version: @(#)PROGRAM:symbols PROJECT:SamplingTools-64460.8
CoreSymbolicationDT.framework version: 64460.7
I filed a bug report with Apple about this, and they verified an issue in symbols:
Thanks for bringing this to our attention. Our Developer Tools team has analyzed your object files, in particular the one with DWARF, and identified potential improvements for how DWARF data is extracted from an object file by the symbols tool. Specifically, the tool is currently short-circuiting because it encountered a DW_TAG_inlined_subroutine abbreviation table that includes a pair of DW_AT_call_line, DW_FORM_udata. Using DW_FORM_udata is valid DWARF, so handling this better is something the team may consider for the future. We can’t guarantee if or when this may happen.
One change for you to try and make this better right now — could you try using DW_FORM_data1 or DW_FORM_data2 in place of DW_FORM_udata? If you do so, does your interaction with the symbols data improve to a workable level?
Based on the above, I tried this patch which makes symbols go.o work as expected once applied:
diff --git a/src/cmd/internal/dwarf/dwarf.go b/src/cmd/internal/dwarf/dwarf.go
index df80039063..b0349a15bc 100644
--- a/src/cmd/internal/dwarf/dwarf.go
+++ b/src/cmd/internal/dwarf/dwarf.go
@@ -434,7 +434,7 @@ var abbrevs = [DW_NABRV]dwAbbrev{
{DW_AT_low_pc, DW_FORM_addr},
{DW_AT_high_pc, DW_FORM_addr},
{DW_AT_call_file, DW_FORM_data4},
- {DW_AT_call_line, DW_FORM_udata},
+ //{DW_AT_call_line, DW_FORM_udata},
},
},
@@ -446,7 +446,7 @@ var abbrevs = [DW_NABRV]dwAbbrev{
{DW_AT_abstract_origin, DW_FORM_ref_addr},
{DW_AT_ranges, DW_FORM_sec_offset},
{DW_AT_call_file, DW_FORM_data4},
- {DW_AT_call_line, DW_FORM_udata},
+ //{DW_AT_call_line, DW_FORM_udata},
},
},
I also tried replacing FORM_udata with FORM_data1 and FORM_data2, but that did not fix symbols and also caused dwarfdump to report errors in the generated go.o.
@aclements Can you offer any advice here? (If you're testing locally, note that you will need 3cb92fc for symbols go.o to work at all.)
cc #31022 #28997 @eliasnaur
Apple's
/usr/bin/symbolsis unable to parse DWARF data embedded by the golang compiler, making iOS app using gomobile hard to debug because their crash reports are missing symbols.I filed a bug report with Apple about this, and they verified an issue in
symbols:Based on the above, I tried this patch which makes
symbols go.owork as expected once applied:I also tried replacing
FORM_udatawithFORM_data1andFORM_data2, but that did not fixsymbolsand also causeddwarfdumpto report errors in the generatedgo.o.@aclements Can you offer any advice here? (If you're testing locally, note that you will need 3cb92fc for
symbols go.oto work at all.)cc #31022 #28997 @eliasnaur