From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by mail.openembedded.org (Postfix) with ESMTP id D570560119 for ; Tue, 8 Mar 2016 08:09:30 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id u2889TsF022004 (version=TLSv1 cipher=AES128-SHA bits=128 verify=OK); Tue, 8 Mar 2016 00:09:29 -0800 Received: from [128.224.162.159] (128.224.162.159) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.248.2; Tue, 8 Mar 2016 00:09:28 -0800 To: Richard Purdie , Zhenhua Luo References: <1457014986.25131.69.camel@linuxfoundation.org> <1457086698.2804.9.camel@linuxfoundation.org> From: Hongxu Jia Message-ID: <56DE88AD.7090902@windriver.com> Date: Tue, 8 Mar 2016 16:09:17 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: <1457086698.2804.9.camel@linuxfoundation.org> Cc: openembedded-core Subject: Re: Status of M3 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Mar 2016 08:09:32 -0000 Content-Type: multipart/alternative; boundary="------------060103000400010203040501" --------------060103000400010203040501 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit On 03/04/2016 06:18 PM, Richard Purdie wrote: > On Fri, 2016-03-04 at 09:41 +0000, Zhenhua Luo wrote: >>> * meta-fsl-ppc breaks on eudev change (patch pending) >>> * meta-fsl-ppc breakage blocks AB artefact publishing >> [Luo Zhenhua-B19537] The eudev patch is merged, http://git.yoctoproje >> ct.org/cgit/cgit.cgi/meta-fsl >> -ppc/commit/?id=2642cf5e8a6f8d11603acf016b8c075ebce00ec0, is there >> any other blocker issue? > Thanks, I appreciate getting that sorted! > > Unfortunately there is something else not quite right with meta-fsl > -ppc: > > https://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/buil > ds/667 Hi Richard, In the log, we have do_configure failed on python3: ... | checking for the platform triplet based on compiler characteristics... powerpc-linux-gnuspe | configure: error: internal configure error for the platform triplet, please file a bug report | NOTE: The following config.log files may provide further information. ... vim configure.ac in python3 source ... 852 if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then 853 if test x$PLATFORM_TRIPLET != x$MULTIARCH; then 854 AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report]) 855 fi 856 fi ... In this case, PLATFORM_TRIPLET is powerpc-linux-gnuspe, and MULTIARCH is MULTIARCH=$($CC --print-multiarch 2>/dev/null), and both of them are not equivalent. On my local build with MACHINE = "qemux86-64", the MULTIARCH is empty. On my local build with MACHINE = "p1022ds", $CC --print-multiarch powerpc-linux-gnuspev1 Extra 'v1' casued the failure. I am going to see what happen on 'v1', file [YOCTO #9226] to trace it //Hongxu > Seems something is not working in python3 do_configure? Everything else > is building python3 fine so not sure what is wrong there. > > Cheers, > > Richard --------------060103000400010203040501 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: 8bit
On 03/04/2016 06:18 PM, Richard Purdie wrote:
On Fri, 2016-03-04 at 09:41 +0000, Zhenhua Luo wrote:
* meta-fsl-ppc breaks on eudev change (patch pending)
* meta-fsl-ppc breakage blocks AB artefact publishing
[Luo Zhenhua-B19537] The eudev patch is merged, http://git.yoctoproje
ct.org/cgit/cgit.cgi/meta-fsl
-ppc/commit/?id=2642cf5e8a6f8d11603acf016b8c075ebce00ec0, is there
any other blocker issue? 
Thanks, I appreciate getting that sorted! 

Unfortunately there is something else not quite right with meta-fsl
-ppc:

https://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/buil
ds/667

Hi Richard,

In the log, we have do_configure failed on python3:
...
| checking for the platform triplet based on compiler characteristics... powerpc-linux-gnuspe
| configure: error: internal configure error for the platform triplet, please file a bug report
| NOTE: The following config.log files may provide further information.
...


vim configure.ac in python3 source
...
 852 if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
 853   if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
 854     AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
 855   fi
 856 fi
...

In this case, PLATFORM_TRIPLET is powerpc-linux-gnuspe, and MULTIARCH is
MULTIARCH=$($CC --print-multiarch 2>/dev/null), and both of them are not equivalent.

On my local build with MACHINE = "qemux86-64", the MULTIARCH is empty.

On my local build with MACHINE = "p1022ds", $CC --print-multiarch
powerpc-linux-gnuspev1

Extra 'v1' casued the failure.

I am going to see what happen on 'v1', file [YOCTO #9226] to trace it

//Hongxu

Seems something is not working in python3 do_configure? Everything else
is building python3 fine so not sure what is wrong there.

Cheers,

Richard

--------------060103000400010203040501--