From fc6265b2cd0231090d54f18182f22620d76a1eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 20 Mar 2016 10:17:03 +0200 Subject: [PATCH 1/2] gcc need glibc-32bit for build emul32 --- system/base/glibc/pspec.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/base/glibc/pspec.xml b/system/base/glibc/pspec.xml index 77264e60..4994404c 100644 --- a/system/base/glibc/pspec.xml +++ b/system/base/glibc/pspec.xml @@ -80,9 +80,11 @@ system.base 32-bit shared libraries for glibc emul32 + + glibc-32bit + glibc - glibc-32bit /etc/ld.so.conf.d/60-glibc-32bit.conf From 427aaae4380b4d61db6633da8846a778178c0c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 20 Mar 2016 10:47:02 +0200 Subject: [PATCH 2/2] check disabledi in emul32 --- system/base/glibc/actions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/base/glibc/actions.py b/system/base/glibc/actions.py index d04cf6e7..69e4c100 100644 --- a/system/base/glibc/actions.py +++ b/system/base/glibc/actions.py @@ -93,8 +93,11 @@ def build(): def check(): shelltools.cd("build") - autotools.make("check || true") + if get.buildTYPE() != "emul32": + autotools.make("check || true") + else: + pass def install(): shelltools.cd("build")