diff options
author | 2019-05-05 22:17:17 -0400 | |
---|---|---|
committer | 2019-05-06 15:47:56 -0400 | |
commit | 802d64131c59d83cc79e6592123ef1a402a09960 (patch) | |
tree | e9242f137a4db05dedbe6e0aeec8b3da1a9a0c3d | |
parent | 163e8baef5f3eb366182c5b95645bffea2524174 (diff) | |
download | meta-cloud-services-802d64131c59d83cc79e6592123ef1a402a09960.tar.gz meta-cloud-services-802d64131c59d83cc79e6592123ef1a402a09960.tar.bz2 meta-cloud-services-802d64131c59d83cc79e6592123ef1a402a09960.zip |
librdmacm: set imcompatible with arm 32 and mips arches
librdmacm depends on package libibverbs which has been set imcompatible
with arm 32 and mips arches by commit 215b975.
When build librdmacm it shows errors:
| NOTE: Resolving any missing task queue dependencies
| ERROR: Nothing PROVIDES 'virtual/libibverbs' (but
| .../meta-cloud-services/recipes-extended/librdmacm/librdmacm_1.1.0.bb
| DEPENDS on or otherwise requires it)
| libibverbs PROVIDES virtual/libibverbs but was skipped: incompatible
| with host arm-wrs-linux-gnueabi (not in COMPATIBLE_HOST)
| ERROR: Required build target 'librdmacm' has no buildable providers.
| Missing or unbuildable dependency chain was: ['librdmacm', 'virtual/libibverbs']
So set librdmacm imcompatible with arm 32 and mips arches too.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/librdmacm/librdmacm_1.1.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-extended/librdmacm/librdmacm_1.1.0.bb b/recipes-extended/librdmacm/librdmacm_1.1.0.bb index 30a0c943..edf92f01 100644 --- a/recipes-extended/librdmacm/librdmacm_1.1.0.bb +++ b/recipes-extended/librdmacm/librdmacm_1.1.0.bb @@ -39,3 +39,6 @@ do_install_append() { rm -f ${D}${libdir}/librdmacm.la rm -f ${D}${libdir}/rsocket/librspreload.la } + +COMPATIBLE_HOST_mipsarch = "none" +COMPATIBLE_HOST_arm = "none" |