mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
package/delve: new package
Delve is a debugger for the Go programming language. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
728484538a
commit
59b46150e1
@ -505,6 +505,7 @@ F: linux/linux-ext-aufs.mk
|
|||||||
F: package/aufs/
|
F: package/aufs/
|
||||||
F: package/aufs-util/
|
F: package/aufs-util/
|
||||||
F: package/batman-adv/
|
F: package/batman-adv/
|
||||||
|
F: package/delve/
|
||||||
F: package/docker-cli/
|
F: package/docker-cli/
|
||||||
F: package/docker-containerd/
|
F: package/docker-containerd/
|
||||||
F: package/docker-engine/
|
F: package/docker-engine/
|
||||||
|
@ -88,6 +88,7 @@ menu "Debugging, profiling and benchmark"
|
|||||||
source "package/cache-calibrator/Config.in"
|
source "package/cache-calibrator/Config.in"
|
||||||
source "package/clinfo/Config.in"
|
source "package/clinfo/Config.in"
|
||||||
source "package/dacapo/Config.in"
|
source "package/dacapo/Config.in"
|
||||||
|
source "package/delve/Config.in"
|
||||||
source "package/dhrystone/Config.in"
|
source "package/dhrystone/Config.in"
|
||||||
source "package/dieharder/Config.in"
|
source "package/dieharder/Config.in"
|
||||||
source "package/dmalloc/Config.in"
|
source "package/dmalloc/Config.in"
|
||||||
|
22
package/delve/Config.in
Normal file
22
package/delve/Config.in
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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
|
||||||
|
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
|
3
package/delve/delve.hash
Normal file
3
package/delve/delve.hash
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Locally calculated
|
||||||
|
sha256 f8bbaecdfc9d1ff6148900d3dea44b6dd06a7f0197be4e9a75c289b7f62682ab delve-1.5.0.tar.gz
|
||||||
|
sha256 778864b990007e8cef6633f8c372dd05bac1fada6cf67b008afb1483f83b38f5 LICENSE
|
17
package/delve/delve.mk
Normal file
17
package/delve/delve.mk
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# delve
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
DELVE_VERSION = 1.5.0
|
||||||
|
DELVE_SITE = $(call github,go-delve,delve,v$(DELVE_VERSION))
|
||||||
|
DELVE_LICENSE = MIT
|
||||||
|
DELVE_LICENSE_FILES = LICENSE
|
||||||
|
DELVE_DEPENDENCIES = host-pkgconf
|
||||||
|
|
||||||
|
DELVE_TAGS = cgo
|
||||||
|
DELVE_BUILD_TARGETS = cmd/dlv
|
||||||
|
DELVE_INSTALL_BINS = $(notdir $(DELVE_BUILD_TARGETS))
|
||||||
|
|
||||||
|
$(eval $(golang-package))
|
Loading…
Reference in New Issue
Block a user