mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
b55ddb5a34
* 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>
11 lines
277 B
Go
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"
|
|
)
|