mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
6c0fbcc622
* Only build with cgosymbolizer when explicitly desired. This fixes go builds for mac and others
11 lines
276 B
Go
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"
|
|
)
|