Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( MinSupportedVersionOfGoMajor = 1 MinSupportedVersionOfGoMinor = 17 MaxSupportedVersionOfGoMajor = 1 MaxSupportedVersionOfGoMinor = 19 )
var (
GoVer18Beta = GoVersion{1, 8, -1, 0, 0, ""}
)
Functions ¶
func Compatible ¶
Compatible checks that the version specified in the producer string is compatible with this version of delve.
func ProducerAfterOrEqual ¶
ProducerAfterOrEqual checks that the DW_AT_producer version is major.minor or a later version, or a development version.
func VersionAfterOrEqual ¶
VersionAfterOrEqual checks that version (as returned by runtime.Version() or go version) is major.minor or a later version, or a development version.
func VersionAfterOrEqualRev ¶
VersionAfterOrEqualRev checks that version (as returned by runtime.Version() or go version) is major.minor or a later version, or a development version.
Types ¶
type GoVersion ¶
GoVersion represents the Go version of the Go compiler version used to compile the target binary.
func ParseProducer ¶
func (*GoVersion) AfterOrEqual ¶
AfterOrEqual returns whether one GoVersion is after or equal to the other.