summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/gperftools
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-07-29 17:04:53 +0200
committerKhem Raj <raj.khem@gmail.com>2021-08-03 10:21:25 -0700
commitc61dc077bbd81260e4f167fa2251643ba0ba6974 (patch)
tree66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-oe/recipes-support/gperftools
parentc5f7cfb8db54cfa4257797db5bd87828dea43296 (diff)
downloadmeta-openembedded-c61dc077bbd81260e4f167fa2251643ba0ba6974.tar.gz
Convert to new override syntax
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/gperftools')
-rw-r--r--meta-oe/recipes-support/gperftools/gperftools_2.9.1.bb28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta-oe/recipes-support/gperftools/gperftools_2.9.1.bb b/meta-oe/recipes-support/gperftools/gperftools_2.9.1.bb
index bf8cb90178..557af0e858 100644
--- a/meta-oe/recipes-support/gperftools/gperftools_2.9.1.bb
+++ b/meta-oe/recipes-support/gperftools/gperftools_2.9.1.bb
@@ -8,7 +8,7 @@ Included are an optimized thread-caching malloc() and cpu and heap profiling uti
8LICENSE = "BSD-3-Clause" 8LICENSE = "BSD-3-Clause"
9LIC_FILES_CHKSUM = "file://COPYING;md5=762732742c73dc6c7fbe8632f06c059a" 9LIC_FILES_CHKSUM = "file://COPYING;md5=762732742c73dc6c7fbe8632f06c059a"
10 10
11DEPENDS_append_libc-musl = " libucontext" 11DEPENDS:append:libc-musl = " libucontext"
12 12
13SRCREV = "f7c6fb6c8e99d6b1b725e5994373bcd19ffdf8fd" 13SRCREV = "f7c6fb6c8e99d6b1b725e5994373bcd19ffdf8fd"
14SRC_URI = "git://github.com/gperftools/gperftools \ 14SRC_URI = "git://github.com/gperftools/gperftools \
@@ -19,7 +19,7 @@ SRC_URI = "git://github.com/gperftools/gperftools \
19 file://sgidef.patch \ 19 file://sgidef.patch \
20 " 20 "
21 21
22SRC_URI_append_libc-musl = " file://ppc-musl.patch" 22SRC_URI:append:libc-musl = " file://ppc-musl.patch"
23 23
24inherit autotools 24inherit autotools
25 25
@@ -28,32 +28,32 @@ S = "${WORKDIR}/git"
28# On mips, we have the following error. 28# On mips, we have the following error.
29# do_page_fault(): sending SIGSEGV to ls for invalid read access from 00000008 29# do_page_fault(): sending SIGSEGV to ls for invalid read access from 00000008
30# Segmentation fault (core dumped) 30# Segmentation fault (core dumped)
31COMPATIBLE_HOST_mipsarch = "null" 31COMPATIBLE_HOST:mipsarch = "null"
32COMPATIBLE_HOST_riscv64 = "null" 32COMPATIBLE_HOST:riscv64 = "null"
33COMPATIBLE_HOST_riscv32 = "null" 33COMPATIBLE_HOST:riscv32 = "null"
34 34
35# Disable thumb1 35# Disable thumb1
36# {standard input}: Assembler messages: 36# {standard input}: Assembler messages:
37# {standard input}:434: Error: lo register required -- `ldr pc,[sp]' 37# {standard input}:434: Error: lo register required -- `ldr pc,[sp]'
38# Makefile:4538: recipe for target 'src/base/libtcmalloc_la-linuxthreads.lo' failed 38# Makefile:4538: recipe for target 'src/base/libtcmalloc_la-linuxthreads.lo' failed
39ARM_INSTRUCTION_SET_armv5 = "arm" 39ARM_INSTRUCTION_SET:armv5 = "arm"
40ARM_INSTRUCTION_SET_toolchain-clang_arm = "arm" 40ARM_INSTRUCTION_SET:toolchain-clang:arm = "arm"
41 41
42EXTRA_OECONF_append_libc-musl_powerpc64le = " --disable-cpu-profiler --disable-heap-profiler --disable-heap-checker" 42EXTRA_OECONF:append:libc-musl:powerpc64le = " --disable-cpu-profiler --disable-heap-profiler --disable-heap-checker"
43PACKAGECONFIG ?= "libunwind static" 43PACKAGECONFIG ?= "libunwind static"
44PACKAGECONFIG_remove_arm_libc-musl = "libunwind" 44PACKAGECONFIG:remove:arm:libc-musl = "libunwind"
45PACKAGECONFIG_remove_riscv64 = "libunwind" 45PACKAGECONFIG:remove:riscv64 = "libunwind"
46PACKAGECONFIG_remove_riscv32 = "libunwind" 46PACKAGECONFIG:remove:riscv32 = "libunwind"
47 47
48PACKAGECONFIG[libunwind] = "--enable-libunwind,--disable-libunwind,libunwind" 48PACKAGECONFIG[libunwind] = "--enable-libunwind,--disable-libunwind,libunwind"
49PACKAGECONFIG[static] = "--enable-static,--disable-static," 49PACKAGECONFIG[static] = "--enable-static,--disable-static,"
50 50
51PACKAGE_BEFORE_PN += "libtcmalloc-minimal" 51PACKAGE_BEFORE_PN += "libtcmalloc-minimal"
52FILES_libtcmalloc-minimal = "${libdir}/libtcmalloc_minimal*${SOLIBS} ${libdir}/libtcmalloc_minimal_debug*${SOLIBS}" 52FILES:libtcmalloc-minimal = "${libdir}/libtcmalloc_minimal*${SOLIBS} ${libdir}/libtcmalloc_minimal_debug*${SOLIBS}"
53 53
54# pprof tool requires Getopt::long and POSIX perl5 modules. 54# pprof tool requires Getopt::long and POSIX perl5 modules.
55# Also runs `objdump` on each cpuprofile data file 55# Also runs `objdump` on each cpuprofile data file
56RDEPENDS_${PN} += " \ 56RDEPENDS:${PN} += " \
57 binutils \ 57 binutils \
58 curl \ 58 curl \
59 perl-module-carp \ 59 perl-module-carp \
@@ -63,4 +63,4 @@ RDEPENDS_${PN} += " \
63 perl-module-posix \ 63 perl-module-posix \
64" 64"
65 65
66RDEPENDS_${PN} += "libtcmalloc-minimal (= ${EXTENDPKGV})" 66RDEPENDS:${PN} += "libtcmalloc-minimal (= ${EXTENDPKGV})"