bbf9531ee7
- include upstream fixes for musl compatibility Include <sys/stat.h> for S_I* macros d34e00b293942b1012ddc49ed3ab379a32337611 Include <linux/ioctl.h> for _IOC_* macros 3460dc486d333231998de0f19918204aacee9ae3 strace 4.8 is broken with musl on some arch (arm: omap,oxnas according to buildbot) compile tested only Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 46124
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=strace
|
|
|
|
PKG_VERSION:=4.10
|
|
PKG_RELEASE:=1
|
|
PKG_MD5SUM:=107a5be455493861189e9b57a3a51912
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
|
|
|
|
PKG_LICENSE:=BSD-3c
|
|
PKG_LICENSE_FILES:=COPYRIGHT
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/strace
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=System call tracer
|
|
URL:=http://strace.sourceforge.net/
|
|
endef
|
|
|
|
define Package/strace/description
|
|
A useful diagnostic, instructional, and debugging tool. Allows you to track what
|
|
system calls a program makes while it is running.
|
|
endef
|
|
|
|
MAKE_FLAGS := \
|
|
CCOPT="$(TARGET_CFLAGS)"
|
|
|
|
define Package/strace/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/strace $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,strace))
|