1
0
mirror of https://github.com/google/gops.git synced 2024-11-24 08:22:25 +02:00

internal: disable goobj

Fixes #2.
This commit is contained in:
Jaana Burcu Dogan 2016-11-11 14:24:41 -08:00
parent 644b41711d
commit abbbf18aa2
2 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,9 @@
package objfile
/*
import (
"debug/dwarf"
"debug/gosym"
@ -154,3 +157,4 @@ func (f *goobjFile) loadAddress() (uint64, error) {
func (f *goobjFile) dwarf() (*dwarf.Data, error) {
return nil, errors.New("no DWARF data in go object file")
}
*/

View File

@ -52,7 +52,7 @@ type RelocStringer interface {
var openers = []func(*os.File) (rawFile, error){
openElf,
openGoobj,
// openGoobj,
openMacho,
openPE,
openPlan9,