mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
8dbb989cb7
Remove obsolete patches: - 010-compat-off64_t-is-not-defined-by-musl.patch: the patched files (src/common/compat/compat-fcntl.c and src/common/compat/fcntl.h) no longer exist in 2.15.0 - 020-fix-lttng-tools-fails-to-compile-with-libxml2-2-14-0.patch: the encode_string() function was refactored in 2.15.0 to use xmlCharEncInFunc() instead of handler->input(), so the fix is no longer needed Add musl compatibility fixes in Build/Prepare via sed: - Remove :: global-namespace qualifier from TFD_CLOEXEC in timerfd.hpp; musl defines it as an octal literal so ::TFD_CLOEXEC is invalid C++ - Same fix for EPOLL_CLOEXEC in poller.cpp - Relax static_assert in consumer.hpp from __cplusplus == 201103L to >= 201103L; SDK builds with C++17 Add missing +libstdcpp to DEPENDS (lttng-tools links libstdc++.so.6). Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
73 lines
2.0 KiB
Makefile
73 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2013-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lttng-tools
|
|
PKG_VERSION:=2.15.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://lttng.org/files/$(PKG_NAME)/
|
|
PKG_HASH:=4d739116556da71d58275bc7f0a6c0a967c6774b7d90f02c2731a7875debf28a
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=LGPL-2.1 GPL-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/lttng-tools
|
|
SECTION:=devel
|
|
CATEGORY:=Development
|
|
TITLE:=Linux Trace Toolkit: next generation (tools)
|
|
URL:=https://lttng.org/
|
|
DEPENDS:= +lttng-ust +libpopt +libxml2 +libstdcpp $(ICONV_DEPENDS)
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-epoll \
|
|
--disable-man-pages \
|
|
--disable-python-bindings \
|
|
--disable-test-python-agent-all \
|
|
--disable-test-sdt-uprobe \
|
|
--disable-bin-lttng-consumerd \
|
|
--disable-extras \
|
|
--without-kmod \
|
|
--with-pic
|
|
|
|
define Build/Prepare
|
|
$(call Build/Prepare/Default)
|
|
$(SED) 's/::TFD_CLOEXEC/TFD_CLOEXEC/g' $(PKG_BUILD_DIR)/src/common/timerfd.hpp
|
|
$(SED) 's/::EPOLL_CLOEXEC/EPOLL_CLOEXEC/g' $(PKG_BUILD_DIR)/src/common/poller.cpp
|
|
$(SED) 's/__cplusplus == 201103L/__cplusplus >= 201103L/' \
|
|
$(PKG_BUILD_DIR)/src/bin/lttng-sessiond/consumer.hpp
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/lttng $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liblttng-ctl*.{a,so*} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/lttng-ctl.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/lttng-tools/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liblttng-ctl*.so.* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lttng* $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,lttng-tools))
|