diff options
author | Joe Slater <jslater@windriver.com> | 2014-12-18 16:51:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-22 10:53:55 +0000 |
commit | 69eff591cc13d22c61679fbda9bc768561114eef (patch) | |
tree | 1a32389a33320f0f5a175d4ab08e83e6d20847e6 /meta/recipes-kernel | |
parent | 886e0d43f2a543a13ac8e3f1cb570ecae90339e0 (diff) | |
download | openembedded-core-69eff591cc13d22c61679fbda9bc768561114eef.tar.gz openembedded-core-69eff591cc13d22c61679fbda9bc768561114eef.tar.bz2 openembedded-core-69eff591cc13d22c61679fbda9bc768561114eef.zip |
sysprof: disable build for aarch64
Add COMPATIBLE_HOST to the recipe and prohibit
building for aarch64 and aarch64_be.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-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" S = "${WORKDIR}/git" inherit autotools pkgconfig + +# We do not yet work for aarch64. +# +COMPATIBLE_HOST = "^(?!aarch64).*" + |