document filename symbol removal

pull/160/head
Andrew LeFevre 5 years ago
parent 666771a25d
commit 97fb465fb9

@ -291,6 +291,11 @@ func stripPCLinesAndNames(am *goobj2.ArchiveMember) {
lists := [][]*goobj2.Sym{am.SymDefs, am.NonPkgSymDefs, am.NonPkgSymRefs}
for _, list := range lists {
for _, s := range list {
// remove filename symbols when -tiny is passed as they
// are only used for printing panics, and -tiny removes
// panic printing; we need to set the symbol names to
// 'gofile..', otherwise the linker will expect to see
// filename symbols and panic
if strings.HasPrefix(s.Name, "gofile..") {
s.Name = "gofile.."
}
@ -500,6 +505,8 @@ func garbleSymbolName(symName string, privImports privateImports, garbledImports
}
// remove filename symbols when -tiny is passed
// as they are only used for printing panics,
// and -tiny removes panic printing
if envGarbleTiny && prefix == "gofile.." {
return prefix
}

@ -2,11 +2,11 @@ env GOPRIVATE=test/main
# Tiny mode
garble -tiny build
! binsubstr main$exe 'main.go' 'fmt/print.go'
env GODEBUG='allocfreetrace=1,gcpacertrace=1,gctrace=1,scavenge=1,scavtrace=1,scheddetail=1,schedtrace=10'
! exec ./main$exe
cmp stdout main.stdout
stderr '\? 0'
! binsubstr main$exe 'main.go' 'fmt/print.go'
[short] stop # no need to verify this with -short

Loading…
Cancel
Save