mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
gdb: have both gdb & gdbserver share defaults
SVN-Revision: 17863
This commit is contained in:
parent
c8489ba3f8
commit
b17f4b2a26
@ -16,23 +16,26 @@ PKG_MD5SUM:=c9da266b884fb8fa54df786dfaadbc7a
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define Package/gdb
|
define Package/gdb/Default
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
DEPENDS:=+libreadline +libncurses
|
|
||||||
TITLE:=GNU Debugger
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/gdbserver
|
define Package/gdb
|
||||||
SECTION:=utils
|
$(call Package/gdb/Default)
|
||||||
CATEGORY:=Utilities
|
TITLE:=GNU Debugger
|
||||||
TITLE:=Remote server for GNU Debugger
|
DEPENDS+= +libreadline +libncurses
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/gdb/description
|
define Package/gdb/description
|
||||||
GNU debugger
|
GNU debugger
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/gdbserver
|
||||||
|
$(call Package/gdb/Default)
|
||||||
|
TITLE:=Remote server for GNU Debugger
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/gdbserver/description
|
define Package/gdbserver/description
|
||||||
GDBSERVER is a program that allows you to run GDB on a different machine
|
GDBSERVER is a program that allows you to run GDB on a different machine
|
||||||
than the one which is running the program being debugged.
|
than the one which is running the program being debugged.
|
||||||
|
Loading…
Reference in New Issue
Block a user