mirror of
https://github.com/go-delve/delve.git
synced 2025-10-28 04:35:19 +08:00
* Added support for reading darwin/arm64 using gdbserver * Trying to fix test failures * Addressing review comments
6 lines
283 B
Go
6 lines
283 B
Go
// This file is used to detect build on unsupported GOOS/GOARCH combinations.
|
|
|
|
//+build !linux,!darwin,!windows,!freebsd linux,!amd64,!arm64,!386 darwin,!amd64,!arm64 windows,!amd64 freebsd,!amd64
|
|
|
|
package your_operating_system_and_architecture_combination_is_not_supported_by_delve
|