diff options
Diffstat (limited to 'meta-oe/recipes-support/gperftools/gperftools_2.7.bb')
-rw-r--r-- | meta-oe/recipes-support/gperftools/gperftools_2.7.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gperftools/gperftools_2.7.bb b/meta-oe/recipes-support/gperftools/gperftools_2.7.bb new file mode 100644 index 000000000..e9fcc4cc9 --- /dev/null +++ b/meta-oe/recipes-support/gperftools/gperftools_2.7.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "Fast, multi-threaded malloc() and nifty performance analysis tools" | ||
2 | HOMEPAGE = "https://github.com/gperftools/gperftools" | ||
3 | LICENSE = "BSD" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=762732742c73dc6c7fbe8632f06c059a" | ||
5 | DEPENDS += "libunwind" | ||
6 | |||
7 | SRCREV = "9608fa3bcf8020d35f59fbf70cd3cbe4b015b972" | ||
8 | SRC_URI = "git://github.com/gperftools/gperftools \ | ||
9 | file://0001-Support-Atomic-ops-on-clang.patch \ | ||
10 | file://0001-fix-build-with-musl-libc.patch \ | ||
11 | file://0001-disbale-heap-checkers-and-debug-allocator-on-musl.patch \ | ||
12 | file://disable_libunwind_aarch64.patch \ | ||
13 | file://sgidef.patch \ | ||
14 | " | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | S = "${WORKDIR}/git" | ||
19 | |||
20 | # On mips, we have the following error. | ||
21 | # do_page_fault(): sending SIGSEGV to ls for invalid read access from 00000008 | ||
22 | # Segmentation fault (core dumped) | ||
23 | COMPATIBLE_HOST_mipsarch_libc-glibc = "null" | ||
24 | # Disable thumb1 | ||
25 | # {standard input}: Assembler messages: | ||
26 | # {standard input}:434: Error: lo register required -- `ldr pc,[sp]' | ||
27 | # Makefile:4538: recipe for target 'src/base/libtcmalloc_la-linuxthreads.lo' failed | ||
28 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
29 | |||