mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
3bdbf72e3a
* now with virtual/kernel dependency dropped we don't want to depend on kernel signature just for
this RRECOMMENDS
* fixes:
=== Comparing signatures for task do_package_write_ipk.sigdata between hammerhead and mako ===
ERROR: oprofile different signature for task do_package_write_ipk.sigdata between hammerhead and mako
NOTE: Starting bitbake server...
runtaskdeps changed:
['binutils/binutils_2.32.bb.do_packagedata', -linux/linux-lg-hammerhead_git.bb.do_packagedata, +linux/linux-lg-mako_git.bb.do_packagedata, 'opkg-utils/opkg-utils_0.4.1.bb.do_populate_sysroot:virtual:native oprofile/oprofile_1.3.0.bb.do_package oprofile/oprofile_1.3.0.bb.do_packagedata pseudo/pseudo_git.bb.do_populate_sysroot:virtual:native xz/xz_5.2.4.bb.do_populate_sysroot:virtual:native']
linux/linux-lg-hammerhead_git.bb.do_packagedata with hash 0c5215deb4737611ad413f57cf5fbdef8a9b2cc6d04035f754a4e93fb38f61d1
changed to
linux/linux-lg-mako_git.bb.do_packagedata with hash 0f3b34773ca3e590739754c25959feb7cdcd67cf7904ac7fe6cc535e8d6519a8
Dependency on task linux/linux-lg-mako_git.bb.do_packagedata was added with hash 0f3b34773ca3e590739754c25959feb7cdcd67cf7904ac7fe6cc535e8d6519a8
Dependency on task linux/linux-lg-hammerhead_git.bb.do_packagedata was removed with hash 0c5215deb4737611ad413f57cf5fbdef8a9b2cc6d04035f754a4e93fb38f61d1
ERROR: 1 errors found in /home/jenkins/workspace/luneos-unstable/webos-ports/tmp-glibc/sstate-diff/1563368432/signatures.mako.do_package_write_ipk.sigdata.log
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit ae65eb496b)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
66 lines
2.3 KiB
PHP
66 lines
2.3 KiB
PHP
SUMMARY = "System-Wide Profiler"
|
|
DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \
|
|
of profiling all running code at low overhead."
|
|
HOMEPAGE = "http://oprofile.sourceforge.net/news/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=16191&atid=116191"
|
|
|
|
LICENSE = "LGPLv2.1+ & GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://libopagent/opagent.h;beginline=5;endline=26;md5=4f16f72c7a493d8a4704aa18d03d15c6 \
|
|
"
|
|
SECTION = "devel"
|
|
|
|
DEPENDS = "popt binutils"
|
|
RDEPENDS_${PN} = "binutils-symlinks"
|
|
|
|
FILES_${PN} = "${bindir} ${libdir}/${BPN}/lib*${SOLIBS} ${datadir}/${BPN}"
|
|
FILES_${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV} ${libdir}/${BPN}/lib*.la"
|
|
FILES_${PN}-staticdev += "${libdir}/${BPN}/lib*.a"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
|
|
file://acinclude.m4 \
|
|
file://automake-foreign.patch \
|
|
file://oprofile-cross-compile-tests.patch \
|
|
file://run-ptest \
|
|
file://root-home-dir.patch \
|
|
file://0001-Add-rmb-definition-for-NIOS2-architecture.patch \
|
|
file://0001-replace-sym_iterator-0-with-sym_iterator.patch \
|
|
"
|
|
UPSTREAM_CHECK_REGEX = "oprofile-(?P<pver>\d+(\.\d+)+)/"
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/oprofile/files/oprofile/"
|
|
|
|
SRC_URI_append_libc-musl = " file://musl.patch \
|
|
"
|
|
|
|
inherit autotools pkgconfig ptest
|
|
|
|
EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC="
|
|
do_configure () {
|
|
cp ${WORKDIR}/acinclude.m4 ${S}/
|
|
autotools_do_configure
|
|
}
|
|
|
|
EXTRA_OEMAKE = "SRCDIR=${PTEST_PATH}/libutil++/tests"
|
|
do_compile_ptest() {
|
|
oe_runmake check
|
|
}
|
|
|
|
do_install_ptest() {
|
|
subdirs="libdb/tests libutil++/tests libregex/tests libutil/tests libop/tests libdb/tests "
|
|
for tooltest in ${subdirs}
|
|
do
|
|
find ${tooltest} -perm /u=x -type f| cpio -pvdu ${D}${PTEST_PATH}
|
|
done
|
|
|
|
# needed by some libop tests
|
|
cp -r events ${D}${PTEST_PATH}
|
|
|
|
# needed by libregex regex_test
|
|
cp libregex/stl.pat ${D}${PTEST_PATH}/libregex
|
|
cp libregex/tests/mangled-name ${D}${PTEST_PATH}/libregex/tests
|
|
|
|
# needed by litutil++ file_manip_tests
|
|
cp ${S}/libutil++/tests/file_manip_tests.cpp \
|
|
libutil++/tests/file_manip_tests.o ${D}${PTEST_PATH}/libutil++/tests
|
|
}
|