Config.in 661 B

12345678910111213141516171819202122
  1. # Supported architectures are listed in
  2. # pkg/proc/native/support_sentinel.go
  3. config 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. config BR2_PACKAGE_DELVE
  11. bool "delve"
  12. depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS
  13. depends on BR2_TOOLCHAIN_HAS_THREADS
  14. help
  15. Delve is a debugger for the Go programming language.
  16. https://github.com/go-delve/delve
  17. comment "delve needs a toolchain w/ threads"
  18. depends on BR2_PACKAGE_DELVE_ARCH_SUPPORTS
  19. depends on !BR2_TOOLCHAIN_HAS_THREADS