
Implement debugging function for 386 on linux with reference to AMD64. There are a few remaining problems that need to be solved in another time. 1. The stacktrace of cgo are not exactly as expected. 2. Not implement `core` for now. 3. Not implement `call` for now. Can't not find `runtime·debugCallV1` or similar function in $GOROOT/src/runtime/asm_386.s. Update #20
6 lines
276 B
Go
6 lines
276 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 windows,!amd64 freebsd,!amd64
|
|
|
|
package your_operating_system_and_architecture_combination_is_not_supported_by_delve
|