2007-10-25 13:59:16 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id: $
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=valgrind
|
|
|
|
PKG_VERSION:=3.2.3
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://valgrind.org/downloads/
|
|
|
|
PKG_MD5SUM:=978847992b136c8d8cb5c6559a91df1c
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/valgrind
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=@TARGET_x86||@TARGET_rdc||@TARGET_ps3||@TARGET_magicbox||@TARGET_amcc||@TARGET_uml
|
|
|
|
TITLE:=debugging and profiling Linux programs
|
|
|
|
URL:=http://www.valgrind.org
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/valgrind/description
|
|
|
|
Valgrind is an award-winning suite of tools for debugging and
|
|
|
|
profiling Linux programs. With the tools that come with Valgrind,
|
|
|
|
you can automatically detect many memory management and threading
|
|
|
|
bugs, avoiding hours of frustrating bug-hunting, making your
|
|
|
|
programs more stable. You can also perform detailed profiling,
|
|
|
|
to speed up and reduce memory use of your programs.
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--disable-tls \
|
|
|
|
--enable-only32bit \
|
|
|
|
--without-x \
|
|
|
|
--without-uiout \
|
|
|
|
--disable-valgrindmi \
|
|
|
|
--disable-tui \
|
|
|
|
--disable-valgrindtk \
|
2007-11-01 17:12:09 +00:00
|
|
|
--without-included-gettext
|
|
|
|
|
|
|
|
DEFAULT_SUPP += "uclibc.supp"
|
2007-10-25 13:59:16 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/valgrind/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) ./files/valgrind.sh $(1)/usr/bin/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/valgrind
|
|
|
|
$(CP) ./files/uclibc.supp $(1)/usr/lib/valgrind/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/valgrind/*-linux $(1)/usr/lib/valgrind/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,valgrind))
|