mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
0b1a777d62
* ran gofmt @ v1.17, these are the resulting changes * fix some flaky tests that are tripping up this PR * gofmt Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
12 lines
309 B
Go
12 lines
309 B
Go
//go:build cgosymbolizer_enabled
|
|
// +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"
|
|
)
|