prysm-pulse/runtime/debug/cgo_symbolizer.go
Håvard Anda Estensen b55ddb5a34
Use go:build lines and remove obsolete +build lines (#10704)
* Use go:build lines and remove obsolete +build lines

* Run gazelle

* Update crypto/bls/blst/stub.go

* Update crypto/bls/blst/stub.go

Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
Co-authored-by: Nishant Das <nishdas93@gmail.com>
2022-06-14 11:47:27 +00:00

11 lines
277 B
Go

//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"
)