1# Supported architectures are listed in 2# pkg/proc/native/support_sentinel.go 3config BR2_PACKAGE_DELVE_ARCH_SUPPORTS 4 bool 5 default y if BR2_aarch64 6 default y if BR2_i386 7 default y if BR2_x86_64 8 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 9 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 10 11config BR2_PACKAGE_DELVE 12 bool "delve" 13 depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS 14 depends on BR2_TOOLCHAIN_HAS_THREADS 15 help 16 Delve is a debugger for the Go programming language. 17 18 https://github.com/go-delve/delve 19 20comment "delve needs a toolchain w/ threads" 21 depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS 22 depends on !BR2_TOOLCHAIN_HAS_THREADS 23