summaryrefslogtreecommitdiffstats
path: root/recipes-extended
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2019-05-05 22:17:17 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2019-05-06 15:47:56 -0400
commit802d64131c59d83cc79e6592123ef1a402a09960 (patch)
treee9242f137a4db05dedbe6e0aeec8b3da1a9a0c3d /recipes-extended
parent163e8baef5f3eb366182c5b95645bffea2524174 (diff)
downloadmeta-cloud-services-802d64131c59d83cc79e6592123ef1a402a09960.tar.gz
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>
Diffstat (limited to 'recipes-extended')
-rw-r--r--recipes-extended/librdmacm/librdmacm_1.1.0.bb3
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 30a0c94..edf92f0 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() {
39 rm -f ${D}${libdir}/librdmacm.la 39 rm -f ${D}${libdir}/librdmacm.la
40 rm -f ${D}${libdir}/rsocket/librspreload.la 40 rm -f ${D}${libdir}/rsocket/librspreload.la
41} 41}
42
43COMPATIBLE_HOST_mipsarch = "none"
44COMPATIBLE_HOST_arm = "none"