disable mips16 for a few packages that don't compile with it
[openwrt/openwrt.git] / package / devel / valgrind / Makefile
1 #
2 # Copyright (C) 2006-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=valgrind
11 PKG_VERSION:=3.8.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://valgrind.org/downloads/
16 PKG_MD5SUM:=288758010b271119a0ffc0183f1d6e38
17
18 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
19
20 PKG_FIXUP = autoreconf
21 PKG_INSTALL := 1
22 PKG_BUILD_PARALLEL := 1
23 PKG_USE_MIPS16:=0
24
25 include $(INCLUDE_DIR)/package.mk
26 include $(INCLUDE_DIR)/kernel.mk
27
28 define Package/valgrind
29 SECTION:=devel
30 CATEGORY:=Development
31 DEPENDS:=@mips||mipsel||i386||powerpc||arm_v7 +libpthread +librt
32 TITLE:=debugging and profiling tools for Linux
33 URL:=http://www.valgrind.org
34 endef
35
36 define Package/valgrind/default
37 $(Package/valgrind)
38 DEPENDS := valgrind
39 endef
40
41 define Package/valgrind-cachegrind
42 $(Package/valgrind/default)
43 TITLE += (cache profiling)
44 endef
45
46 define Package/valgrind-callgrind
47 $(Package/valgrind/default)
48 TITLE += (callgraph profiling)
49 endef
50
51 define Package/valgrind-drd
52 $(Package/valgrind/default)
53 TITLE += (thread error detection)
54 endef
55
56 define Package/valgrind-massif
57 $(Package/valgrind/default)
58 TITLE += (heap profiling)
59 endef
60
61 define Package/valgrind-helgrind
62 $(Package/valgrind/default)
63 TITLE += (thread debugging)
64 endef
65
66 define Package/valgrind-vgdb
67 $(Package/valgrind/default)
68 TITLE += (GDB interface)
69 endef
70
71 define Package/valgrind/description
72 Valgrind is an award-winning suite of tools for debugging and
73 profiling Linux programs. With the tools that come with Valgrind,
74 you can automatically detect many memory management and threading
75 bugs, avoiding hours of frustrating bug-hunting, making your
76 programs more stable. You can also perform detailed profiling,
77 to speed up and reduce memory use of your programs.
78 endef
79
80 CPU := $(patsubst x86,i386,$(LINUX_KARCH))
81
82 CONFIGURE_VARS += \
83 UNAME_R=$(LINUX_VERSION)
84
85 CONFIGURE_ARGS += \
86 --enable-only32bit \
87 --enable-tls \
88 --without-x \
89 --without-uiout \
90 --disable-valgrindmi \
91 --disable-tui \
92 --disable-valgrindtk \
93 --without-included-gettext
94
95 define Package/valgrind/install
96 $(INSTALL_DIR) $(1)/usr/bin
97 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/valgrind* $(1)/usr/bin/
98 $(INSTALL_DIR) $(1)/usr/lib/valgrind
99 $(CP) \
100 ./files/default.supp \
101 $(PKG_INSTALL_DIR)/usr/lib/valgrind/none-* \
102 $(PKG_INSTALL_DIR)/usr/lib/valgrind/vgpreload_core*.so \
103 $(PKG_INSTALL_DIR)/usr/lib/valgrind/$(CPU)-*.xml \
104 $(PKG_INSTALL_DIR)/usr/lib/valgrind/32bit-core*.xml \
105 $(PKG_INSTALL_DIR)/usr/lib/valgrind/32bit-linux*.xml \
106 $(PKG_INSTALL_DIR)/usr/lib/valgrind/memcheck-* \
107 $(PKG_INSTALL_DIR)/usr/lib/valgrind/vgpreload_memcheck*.so \
108 $(1)/usr/lib/valgrind/
109 endef
110
111 define Package/valgrind-cachegrind/install
112 $(INSTALL_DIR) $(1)/usr/bin
113 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/cg_* $(1)/usr/bin/
114 $(INSTALL_DIR) $(1)/usr/lib/valgrind
115 $(CP) \
116 $(PKG_INSTALL_DIR)/usr/lib/valgrind/cachegrind-* \
117 $(1)/usr/lib/valgrind/
118 endef
119
120 define Package/valgrind-callgrind/install
121 $(INSTALL_DIR) $(1)/usr/bin
122 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/callgrind* $(1)/usr/bin/
123 $(INSTALL_DIR) $(1)/usr/lib/valgrind
124 $(CP) \
125 $(PKG_INSTALL_DIR)/usr/lib/valgrind/callgrind-* \
126 $(1)/usr/lib/valgrind/
127 endef
128
129 define Package/valgrind-drd/install
130 $(INSTALL_DIR) $(1)/usr/lib/valgrind
131 $(CP) \
132 $(PKG_INSTALL_DIR)/usr/lib/valgrind/drd-* \
133 $(PKG_INSTALL_DIR)/usr/lib/valgrind/vgpreload_drd*.so \
134 $(1)/usr/lib/valgrind/
135 endef
136
137 define Package/valgrind-massif/install
138 $(INSTALL_DIR) $(1)/usr/bin
139 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ms_print $(1)/usr/bin/
140 $(INSTALL_DIR) $(1)/usr/lib/valgrind
141 $(CP) \
142 $(PKG_INSTALL_DIR)/usr/lib/valgrind/massif-* \
143 $(PKG_INSTALL_DIR)/usr/lib/valgrind/vgpreload_massif*.so \
144 $(1)/usr/lib/valgrind/
145 endef
146
147 define Package/valgrind-helgrind/install
148 $(INSTALL_DIR) $(1)/usr/lib/valgrind
149 $(CP) \
150 $(PKG_INSTALL_DIR)/usr/lib/valgrind/helgrind-* \
151 $(PKG_INSTALL_DIR)/usr/lib/valgrind/vgpreload_helgrind*.so \
152 $(1)/usr/lib/valgrind/
153 endef
154
155 define Package/valgrind-vgdb/install
156 $(INSTALL_DIR) $(1)/usr/bin
157 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vgdb $(1)/usr/bin/
158 endef
159
160 $(eval $(call BuildPackage,valgrind))
161 $(eval $(call BuildPackage,valgrind-cachegrind))
162 $(eval $(call BuildPackage,valgrind-callgrind))
163 $(eval $(call BuildPackage,valgrind-drd))
164 $(eval $(call BuildPackage,valgrind-massif))
165 $(eval $(call BuildPackage,valgrind-helgrind))
166 $(eval $(call BuildPackage,valgrind-vgdb))