mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Build against the bundled kernel headers instead of using the current kernel ones. This ensures strace is using the kernel headers it is written against, and not a random one that may contain breaking uapi changes (which happen from time to time). Fixes build against 6.18 final and recent LTS/stable kernels that got minor uapi breakages (rename of a 6.18 introduced #define and a struct field). Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
84 lines
1.9 KiB
Makefile
84 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.18
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://strace.io/files/$(PKG_VERSION)
|
|
PKG_HASH:=0ad5dcba973a69e779650ef1cb335b12ee60716fc7326609895bd33e6d2a7325
|
|
|
|
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
|
|
|
|
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 \
|
|
--enable-bundled=yes \
|
|
--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))
|