The libbfd library provided by binutils unfortunately changed its API
in binutils >= 2.34. This is causing some build failures at the moment
on architectures such as ARC that are using a very recent binutils
version, but it would also cause build failures on other architectures
once they start using binutils 2.34.
We fix this build issue by backporting an upstream oprofile
patch. However, this patch touches configure.ac, which means we need
to autoreconf, which needs another fix in configure.ac for autoreconf
to succeed.
With all that in place, this commit fixes:
http://autobuild.buildroot.net/results/583d281c6cd2aecb65556080b379db24101ae3a8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 8883b8387a
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
67 lines
1.9 KiB
Makefile
67 lines
1.9 KiB
Makefile
################################################################################
|
|
#
|
|
# oprofile
|
|
#
|
|
################################################################################
|
|
|
|
OPROFILE_VERSION = 1.3.0
|
|
OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
|
|
OPROFILE_LICENSE = GPL-2.0+
|
|
OPROFILE_LICENSE_FILES = COPYING
|
|
# 0002-configure.ac-add-foreign-option-to-AM_INIT_AUTOMAKE.patch
|
|
# 0003-Macro-wrappers-to-handle-the-binutils-2.34-api-chang.patch
|
|
OPROFILE_AUTORECONF = YES
|
|
OPROFILE_CONF_OPTS = \
|
|
--disable-account-check \
|
|
--enable-gui=no \
|
|
--with-kernel=$(STAGING_DIR)/usr
|
|
|
|
OPROFILE_BINARIES = \
|
|
utils/ophelp pp/opannotate pp/oparchive pp/opgprof \
|
|
pp/opreport opjitconv/opjitconv \
|
|
utils/op-check-perfevents libabi/opimport \
|
|
pe_counting/ocount pe_profiling/operf
|
|
|
|
ifeq ($(BR2_i386),y)
|
|
OPROFILE_ARCH = i386
|
|
endif
|
|
ifeq ($(BR2_mipsel),y)
|
|
OPROFILE_ARCH = mips
|
|
endif
|
|
ifeq ($(BR2_powerpc),y)
|
|
OPROFILE_ARCH = ppc
|
|
endif
|
|
ifeq ($(BR2_x86_64),y)
|
|
OPROFILE_ARCH = x86-64
|
|
endif
|
|
ifeq ($(OPROFILE_ARCH),)
|
|
OPROFILE_ARCH = $(BR2_ARCH)
|
|
endif
|
|
|
|
OPROFILE_DEPENDENCIES = popt binutils host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPFM4),y)
|
|
OPROFILE_DEPENDENCIES += libpfm4
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
define OPROFILE_INSTALL_SHARED_LIBRARY
|
|
$(INSTALL) -m 755 $(@D)/libopagent/.libs/*.so* $(TARGET_DIR)/usr/lib/oprofile
|
|
endef
|
|
endif
|
|
|
|
define OPROFILE_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/bin
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/share/oprofile
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/lib/oprofile
|
|
if [ -d $(@D)/events/$(OPROFILE_ARCH) ]; then \
|
|
cp -dpfr $(@D)/events/$(OPROFILE_ARCH) \
|
|
$(TARGET_DIR)/usr/share/oprofile; \
|
|
fi
|
|
$(INSTALL) -m 644 $(@D)/libregex/stl.pat $(TARGET_DIR)/usr/share/oprofile
|
|
$(INSTALL) -m 755 $(addprefix $(@D)/, $(OPROFILE_BINARIES)) $(TARGET_DIR)/usr/bin
|
|
$(OPROFILE_INSTALL_SHARED_LIBRARY)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|