[package] gdb: fix build failure with arm targets
[openwrt-10.03/.git] / package / gdb / Makefile
1 # Copyright (C) 2006-2009 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=gdb
10 PKG_VERSION:=6.8
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_SOURCE_URL:=@GNU/gdb
15 PKG_MD5SUM:=c9da266b884fb8fa54df786dfaadbc7a
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/gdb/Default
20   SECTION:=utils
21   CATEGORY:=Utilities
22   DEPENDS:= @!avr32
23 endef
24
25 define Package/gdb
26 $(call Package/gdb/Default)
27   TITLE:=GNU Debugger
28   DEPENDS+= +libreadline +libncurses
29 endef
30
31 define Package/gdb/description
32  GNU debugger
33 endef
34
35 define Package/gdbserver
36 $(call Package/gdb/Default)
37   TITLE:=Remote server for GNU Debugger
38 endef
39
40 define Package/gdbserver/description
41  GDBSERVER is a program that allows you to run GDB on a different machine 
42  than the one which is running the program being debugged.
43 endef
44
45 # XXX: add --disable-werror to prevent build failure with arm
46 CONFIGURE_ARGS+= \
47         --with-system-readline \
48         --disable-werror \
49
50 CONFIGURE_VARS+= \
51         ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
52
53 define Build/Compile
54         $(MAKE) -C $(PKG_BUILD_DIR) \
55                 DESTDIR="$(PKG_INSTALL_DIR)" \
56                 CPPFLAGS="$(TARGET_CPPFLAGS)" \
57                 all install-gdb
58 endef
59
60 define Package/gdb/install      
61         $(INSTALL_DIR) $(1)/usr/bin
62         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/
63 endef
64
65 define Package/gdbserver/install        
66         $(INSTALL_DIR) $(1)/usr/bin
67         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
68 endef
69
70 $(eval $(call BuildPackage,gdb))
71 $(eval $(call BuildPackage,gdbserver))
72