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