mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-13 09:09:20 +00:00
d104edcd1b
Release Notes: https://github.com/strace/strace/releases/tag/v6.8 https://github.com/strace/strace/releases/tag/v6.9 https://github.com/strace/strace/releases/tag/v6.10 https://github.com/strace/strace/releases/tag/v6.11 Small size increase: 323788 bin/packages/mips_24kc-old/base/strace_6.7-r1_mips_24kc.ipk 336988 bin/packages/mips_24kc-new/base/strace_6.11-r1_mips_24kc.ipk Link: https://github.com/openwrt/openwrt/pull/16585 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
86 lines
1.9 KiB
Makefile
86 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2006-2016 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:=6.11
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://strace.io/files/$(PKG_VERSION)
|
|
PKG_HASH:=83262583a3529f02c3501aa8b8ac772b4cbc03dc934e98bab6e4883626e283a5
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:strace_project:strace
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_CONFIG_DEPENDS := \
|
|
CONFIG_STRACE_LIBDW \
|
|
CONFIG_STRACE_LIBUNWIND
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
HOST_CFLAGS += -I$(LINUX_DIR)/user_headers/include
|
|
|
|
CONFIGURE_VARS+= \
|
|
LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
|
|
CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \
|
|
CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
|
|
CC_FOR_BUILD="$(HOST_CC)"
|
|
|
|
define Package/strace
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=System call tracer
|
|
URL:=https://strace.io/
|
|
DEPENDS:=+STRACE_LIBDW:libdw +STRACE_LIBUNWIND:libunwind
|
|
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
|
|
|
|
define Package/strace/config
|
|
choice
|
|
prompt "stack tracing support"
|
|
default STRACE_NONE
|
|
|
|
config STRACE_NONE
|
|
bool "None"
|
|
|
|
config STRACE_LIBDW
|
|
bool "libdw"
|
|
|
|
config STRACE_LIBUNWIND
|
|
bool "libunwind (experimental)"
|
|
endchoice
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-libdw=$(if $(CONFIG_STRACE_LIBDW),yes,no) \
|
|
--with-libunwind=$(if $(CONFIG_STRACE_LIBUNWIND),yes,no) \
|
|
--enable-mpers=no \
|
|
--without-libselinux
|
|
|
|
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))
|