diff options
author | Qi.Chen@windriver.com <Qi.Chen@windriver.com> | 2016-08-17 16:17:17 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-22 15:49:27 +0200 |
commit | 4efb76b1aad1d69933e91ae16508bc8022399b2a (patch) | |
tree | 442e4fcb769d014257ab69f77a8a156b3016b1d2 | |
parent | 41abb7e616115a30d1b936d515c3be6971596537 (diff) | |
download | meta-openembedded-4efb76b1aad1d69933e91ae16508bc8022399b2a.tar.gz |
gperftools: upgrade to 2.5
Upgrade gperftools and set COMPATIBLE_HOST according to testing results
for this version.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/gperftools/gperftools_2.4.bb | 12 | ||||
-rw-r--r-- | meta-oe/recipes-support/gperftools/gperftools_2.5.bb | 18 |
2 files changed, 18 insertions, 12 deletions
diff --git a/meta-oe/recipes-support/gperftools/gperftools_2.4.bb b/meta-oe/recipes-support/gperftools/gperftools_2.4.bb deleted file mode 100644 index 3d8e2a9d3..000000000 --- a/meta-oe/recipes-support/gperftools/gperftools_2.4.bb +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | SUMMARY = "Fast, multi-threaded malloc() and nifty performance analysis tools" | ||
2 | HOMEPAGE = "http://code.google.com/p/gperftools/" | ||
3 | LICENSE = "BSD" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=762732742c73dc6c7fbe8632f06c059a" | ||
5 | DEPENDS = "libunwind" | ||
6 | |||
7 | SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/gperftools/gperftools-2.4.tar.gz/2171cea3bbe053036fb5d5d25176a160/gperftools-2.4.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "2171cea3bbe053036fb5d5d25176a160" | ||
10 | SRC_URI[sha256sum] = "982a37226eb42f40714e26b8076815d5ea677a422fb52ff8bfca3704d9c30a2d" | ||
11 | |||
12 | inherit autotools | ||
diff --git a/meta-oe/recipes-support/gperftools/gperftools_2.5.bb b/meta-oe/recipes-support/gperftools/gperftools_2.5.bb new file mode 100644 index 000000000..1572d4c4f --- /dev/null +++ b/meta-oe/recipes-support/gperftools/gperftools_2.5.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Fast, multi-threaded malloc() and nifty performance analysis tools" | ||
2 | HOMEPAGE = "http://code.google.com/p/gperftools/" | ||
3 | LICENSE = "BSD" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=762732742c73dc6c7fbe8632f06c059a" | ||
5 | DEPENDS = "libunwind" | ||
6 | |||
7 | SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/gperftools/gperftools-2.5.tar.gz/aa1eaf95dbe2c9828d0bd3a00f770f50/gperftools-2.5.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "aa1eaf95dbe2c9828d0bd3a00f770f50" | ||
10 | SRC_URI[sha256sum] = "6fa2748f1acdf44d750253e160cf6e2e72571329b42e563b455bde09e9e85173" | ||
11 | |||
12 | inherit autotools | ||
13 | |||
14 | # On mips, we have the following error. | ||
15 | # do_page_fault(): sending SIGSEGV to ls for invalid read access from 00000008 | ||
16 | # Segmentation fault (core dumped) | ||
17 | # On aarch64, system hangs when using libtcmalloc.so. | ||
18 | COMPATIBLE_HOST = "(i.86|x86_64|powerpc|powerpc64|arm).*-linux*" | ||