mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
f820d41f0a
Commit58a291470a
(package/pkg-golang: select BR2_PACKAGE_HOST_GO) ensured that we had the host-go enabled for all packages that need it. However, for delve, the select was added to the _ARCH_SUPPORTS symbol, which means that host-go is built as soon as delve supports the target, even when devle itself is not enabled. Move the select to the main symbol. Fixes:58a291470a
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
689 B
Plaintext
24 lines
689 B
Plaintext
# Supported architectures are listed in
|
|
# pkg/proc/native/support_sentinel.go
|
|
config BR2_PACKAGE_DELVE_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_aarch64
|
|
default y if BR2_i386
|
|
default y if BR2_x86_64
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
|
|
|
config BR2_PACKAGE_DELVE
|
|
bool "delve"
|
|
depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_HOST_GO
|
|
help
|
|
Delve is a debugger for the Go programming language.
|
|
|
|
https://github.com/go-delve/delve
|
|
|
|
comment "delve needs a toolchain w/ threads"
|
|
depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|