prysm-pulse/shared/debug/cgo_symbolizer.go
Preston Van Loon 6c0fbcc622
Only build with cgosymbolizer when explicitly requested (#6151)
* Only build with cgosymbolizer when explicitly desired. This fixes go builds for mac and others
2020-06-05 22:21:43 +00:00

11 lines
276 B
Go

// +build cgosymbolizer_enabled
package debug
import (
// Using this file with this imported library configures the process to
// expose cgo symbols when possible. Use --config=cgo_symbolizer to make use of
// this feature.
_ "github.com/ianlancetaylor/cgosymbolizer"
)