ff0367008c
trace-cmd use python-config to find out which headers and libraries should be used to link against the Python libraries. By default, python-config returns paths that are inappropriate for cross-compilation. This patch replaces python-config with pkg-config as a workaround. Add PYTHON_VERS to build trace-cmd with python2 or python3 Fixes: http://autobuild.buildroot.net/results/980/980875810528ac1dee34b8c268d9b3c40b2e35ec/ Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# trace-cmd
|
|
#
|
|
################################################################################
|
|
|
|
TRACE_CMD_VERSION = trace-cmd-v2.2.1
|
|
TRACE_CMD_SITE = http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
|
TRACE_CMD_SITE_METHOD = git
|
|
TRACE_CMD_INSTALL_STAGING = YES
|
|
TRACE_CMD_LICENSE = GPLv2 LGPLv2.1
|
|
TRACE_CMD_LICENSE_FILES = COPYING COPYING.LIB
|
|
|
|
TRACE_CMD_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
TRACE_CMD_DEPENDENCIES += python host-swig
|
|
TRACE_CMD_MAKE_OPTS = PYTHON_VERS=python
|
|
else ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
|
TRACE_CMD_DEPENDENCIES += python3 host-swig
|
|
TRACE_CMD_MAKE_OPTS = PYTHON_VERS=python3
|
|
else
|
|
TRACE_CMD_MAKE_OPTS += NO_PYTHON=1
|
|
endif
|
|
|
|
# trace-cmd already defines _LARGEFILE64_SOURCE when necessary,
|
|
# redefining it on the command line causes build problems.
|
|
TRACE_CMD_CFLAGS=$(filter-out -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS)) -D_GNU_SOURCE
|
|
|
|
define TRACE_CMD_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TRACE_CMD_CFLAGS)" \
|
|
$(TRACE_CMD_MAKE_OPTS) \
|
|
-C $(@D) all
|
|
endef
|
|
|
|
define TRACE_CMD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/trace-cmd $(TARGET_DIR)/usr/bin/trace-cmd
|
|
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
|
$(INSTALL) -D -m 0755 $(@D)/plugin_*.so $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
|
endef
|
|
|
|
$(eval $(generic-package))
|