diff options
author | Joe Slater <jslater@windriver.com> | 2014-12-18 16:51:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-23 10:18:18 +0000 |
commit | 1ce4f04bb98bd855e08ad2b028f67625f0a7b617 (patch) | |
tree | fb5ba02dda21452bd22ede7b51aacc46bb6f246f /meta/recipes-kernel/sysprof | |
parent | fbfabde9d53a930628c84d5bac1a8152350168e1 (diff) | |
download | poky-1ce4f04bb98bd855e08ad2b028f67625f0a7b617.tar.gz |
sysprof: disable build for aarch64
Add COMPATIBLE_HOST to the recipe and prohibit
building for aarch64 and aarch64_be.
(From OE-Core rev: 69eff591cc13d22c61679fbda9bc768561114eef)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/sysprof')
-rw-r--r-- | meta/recipes-kernel/sysprof/sysprof_git.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-kernel/sysprof/sysprof_git.bb b/meta/recipes-kernel/sysprof/sysprof_git.bb index ef1e270883..cfc814ff32 100644 --- a/meta/recipes-kernel/sysprof/sysprof_git.bb +++ b/meta/recipes-kernel/sysprof/sysprof_git.bb | |||
@@ -18,3 +18,8 @@ SRC_URI_append_mips64 = " file://rmb-mips.patch" | |||
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | 19 | ||
20 | inherit autotools pkgconfig | 20 | inherit autotools pkgconfig |
21 | |||
22 | # We do not yet work for aarch64. | ||
23 | # | ||
24 | COMPATIBLE_HOST = "^(?!aarch64).*" | ||
25 | |||