mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
* 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"
|
|
)
|