Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Block some packages build for mips64 with 64 bit userspace
@ 2013-07-05 10:18 Kai Kang
  2013-07-05 10:18 ` [PATCH 1/2] webkit: set COMPATIBLE_HOST for mips64 Kai Kang
  2013-07-05 10:18 ` [PATCH 2/2] packagegroup-core-lsb: set COMPATIBLE_HOST to mips64 Kai Kang
  0 siblings, 2 replies; 3+ messages in thread
From: Kai Kang @ 2013-07-05 10:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: wenzhong.fan

Set COMPATIBLE_HOST for web-webkit, webkit-gtk and packagegroup-core-image-lsb to block them build for mips64 with 64 bit userspace

The following changes since commit 8a186a6b3853fc1a7dcf342d421c8926c38949c9:

  bitbake: hob: save button from settings called a nonexisting method (2013-07-03 08:13:35 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib kangkai/mips64
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/mips64

Kai Kang (2):
  webkit: set COMPATIBLE_HOST for mips64
  packagegroup-core-lsb: set COMPATIBLE_HOST to mips64

 .../packagegroups/packagegroup-core-lsb.bb         |    2 ++
 meta/recipes-sato/web/web-webkit_git.bb            |    3 +++
 meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb       |    3 +++
 3 files changed, 8 insertions(+)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] webkit: set COMPATIBLE_HOST for mips64
  2013-07-05 10:18 [PATCH 0/2] Block some packages build for mips64 with 64 bit userspace Kai Kang
@ 2013-07-05 10:18 ` Kai Kang
  2013-07-05 10:18 ` [PATCH 2/2] packagegroup-core-lsb: set COMPATIBLE_HOST to mips64 Kai Kang
  1 sibling, 0 replies; 3+ messages in thread
From: Kai Kang @ 2013-07-05 10:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: wenzhong.fan

webkit packages can NOT be built for mips64 with 64 bit userspace. Set
COMPATIBLE_HOST to to block them build for such platform.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 meta/recipes-sato/web/web-webkit_git.bb      |    3 +++
 meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb |    3 +++
 2 files changed, 6 insertions(+)

diff --git a/meta/recipes-sato/web/web-webkit_git.bb b/meta/recipes-sato/web/web-webkit_git.bb
index 0c79324..b335800 100644
--- a/meta/recipes-sato/web/web-webkit_git.bb
+++ b/meta/recipes-sato/web/web-webkit_git.bb
@@ -21,6 +21,9 @@ S = "${WORKDIR}/git"
 
 EXTRA_OECONF = "--enable-libowl"
 
+# web-webkit could NOT be built on MIPS64 with 64 bits userspace
+COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"
+
 inherit autotools pkgconfig
 
 FILES_${PN} += "${datadir}/web2"
diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
index ed98b30..5691d3f 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
@@ -31,6 +31,9 @@ SRC_URI = "\
 SRC_URI[md5sum] = "dcbf9d5e2e6391f857c29a57528b32a6"
 SRC_URI[sha256sum] = "ada02d636af61aed38f142d3cded662d141ce71264f624c4eb873621a74cc9e7"
 
+# webkit-gtk can NOT be built on MIPS64 with 64 bits userspace
+COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"
+
 inherit autotools lib_package gtk-doc pkgconfig
 
 S = "${WORKDIR}/webkit-${PV}/"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] packagegroup-core-lsb: set COMPATIBLE_HOST to mips64
  2013-07-05 10:18 [PATCH 0/2] Block some packages build for mips64 with 64 bit userspace Kai Kang
  2013-07-05 10:18 ` [PATCH 1/2] webkit: set COMPATIBLE_HOST for mips64 Kai Kang
@ 2013-07-05 10:18 ` Kai Kang
  1 sibling, 0 replies; 3+ messages in thread
From: Kai Kang @ 2013-07-05 10:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: wenzhong.fan

qt4 related packages which are included in packagegroup-core-lsb can NOT
built for mips64 with 64 bits userspace, so block packagegroup-core-lsb
from build for such platform.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../packagegroups/packagegroup-core-lsb.bb         |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
index ed854b8..d50e512 100644
--- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
+++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
@@ -7,6 +7,8 @@ DESCRIPTION = "Packages required to satisfy the Linux Standard Base (LSB) specif
 PR = "r10"
 LICENSE = "MIT"
 
+COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"
+
 inherit packagegroup
 
 PACKAGES = "\
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-07-05 10:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-05 10:18 [PATCH 0/2] Block some packages build for mips64 with 64 bit userspace Kai Kang
2013-07-05 10:18 ` [PATCH 1/2] webkit: set COMPATIBLE_HOST for mips64 Kai Kang
2013-07-05 10:18 ` [PATCH 2/2] packagegroup-core-lsb: set COMPATIBLE_HOST to mips64 Kai Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox