
The file incorrectly contains a space, which means it does nothing besides breaking 'make build'.
7 lines
207 B
Go
7 lines
207 B
Go
// This file is used to detect build on unsupported GOOS/GOARCH combinations.
|
|
|
|
//go:build darwin && !amd64 && !arm64
|
|
// +build darwin,!amd64,!arm64
|
|
|
|
package your_darwin_architectur_is_not_supported_by_delve
|