All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] glibc-package: use ${PN} in INSANE_SKIP
@ 2015-08-18 13:55 Martin Jansa
  2015-08-24  3:36 ` Robert Yang
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2015-08-18 13:55 UTC (permalink / raw)
  To: openembedded-core

* INSANE_SKIP_${PN}_append_aarch64 is causing following warning in some
  setups:
  WARNING: Variable key INSANE_SKIP_${PN} () replaces original key INSANE_SKIP_glibc ().
* in worst case this will be applied also for glibc-initial package
  which is using the same glibc-package.inc, but glibc-initial doesn't
  create any packages so we should be fine
* someone building for aarch64 should confirm verify that this
  INSANE_SKIP is still needed and cannot be fixed properly it was
  introduced in:
    commit aeb6f53dd607ceb0d2265a05c27f751109c73752
    Author: Mark Hatle <mark.hatle@windriver.com>
    Date:   Thu Dec 18 16:51:13 2014 +0800

    glibc-package: aarch64 enable symlink for ABI compliance

    aarch64 requires the ld.so to be present in /lib, even if the rest
    of the libraries are installed into an alternative directory.

    See: https://sourceware.org/glibc/wiki/ABIList

    Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-core/glibc/glibc-package.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc
index def0e0c..c72a49e 100644
--- a/meta/recipes-core/glibc/glibc-package.inc
+++ b/meta/recipes-core/glibc/glibc-package.inc
@@ -35,7 +35,7 @@ RPROVIDES_${PN}-pcprofile = "eglibc-pcprofile"
 RPROVIDES_${PN}-dbg = "eglibc-dbg"
 libc_baselibs = "${base_libdir}/libcrypt*.so.* ${base_libdir}/libcrypt-*.so ${base_libdir}/libc.so.* ${base_libdir}/libc-*.so ${base_libdir}/libm*.so.* ${base_libdir}/libm-*.so ${base_libdir}/libmvec-*.so ${base_libdir}/ld*.so.* ${base_libdir}/ld-*.so ${base_libdir}/libpthread*.so.* ${base_libdir}/libpthread-*.so ${base_libdir}/libresolv*.so.* ${base_libdir}/libresolv-*.so ${base_libdir}/librt*.so.* ${base_libdir}/librt-*.so ${base_libdir}/libutil*.so.* ${base_libdir}/libutil-*.so ${base_libdir}/libnsl*.so.* ${base_libdir}/libnsl-*.so ${base_libdir}/libnss_files*.so.* ${base_libdir}/libnss_files-*.so ${base_libdir}/libnss_compat*.so.* ${base_libdir}/libnss_compat-*.so ${base_libdir}/libnss_dns*.so.* ${base_libdir}/libnss_dns-*.so ${base_libdir}/libdl*.so.* ${base_libdir}/libdl-*.so ${base_libdir}/libanl*.so.* ${base_libdir}/libanl-*.so ${base_libdir}/libBrokenLocale*.so.* ${base_libdir}/libBrokenLocale-*.so"
 libc_baselibs_append_aarch64 = " /lib/ld-linux-aarch64*.so.1"
-INSANE_SKIP_glibc_append_aarch64 = " libdir"
+INSANE_SKIP_${PN}_append_aarch64 = " libdir"
 
 FILES_${PN} = "${libc_baselibs} ${libexecdir}/* ${@base_conditional('USE_LDCONFIG', '1', '${base_sbindir}/ldconfig ${sysconfdir}/ld.so.conf', '', d)}"
 FILES_ldd = "${bindir}/ldd"
-- 
2.5.0



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

* Re: [PATCH] glibc-package: use ${PN} in INSANE_SKIP
  2015-08-18 13:55 [PATCH] glibc-package: use ${PN} in INSANE_SKIP Martin Jansa
@ 2015-08-24  3:36 ` Robert Yang
  2015-08-24  7:43   ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Yang @ 2015-08-24  3:36 UTC (permalink / raw)
  To: Martin Jansa, openembedded-core



On 08/18/2015 09:55 PM, Martin Jansa wrote:
> * INSANE_SKIP_${PN}_append_aarch64 is causing following warning in some
>    setups:
>    WARNING: Variable key INSANE_SKIP_${PN} () replaces original key INSANE_SKIP_glibc ().
> * in worst case this will be applied also for glibc-initial package
>    which is using the same glibc-package.inc, but glibc-initial doesn't
>    create any packages so we should be fine
> * someone building for aarch64 should confirm verify that this
>    INSANE_SKIP is still needed and cannot be fixed properly it was

Hi Martin,

I verified that we still need the patch, otherwise warnings:

MACHINE ?= "qemuarm64"
require conf/multilib.conf
MULTILIBS = "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 = "armv7a"

$ bitbake glibc -ccleansstate && bitbake glibc
WARNING: QA Issue: glibc: found library in wrong location: 
/lib/ld-linux-aarch64.so.1 [libdir]

// Robert

>    introduced in:
>      commit aeb6f53dd607ceb0d2265a05c27f751109c73752
>      Author: Mark Hatle <mark.hatle@windriver.com>
>      Date:   Thu Dec 18 16:51:13 2014 +0800
>
>      glibc-package: aarch64 enable symlink for ABI compliance
>
>      aarch64 requires the ld.so to be present in /lib, even if the rest
>      of the libraries are installed into an alternative directory.
>
>      See: https://sourceware.org/glibc/wiki/ABIList
>
>      Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
>      Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta/recipes-core/glibc/glibc-package.inc | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc
> index def0e0c..c72a49e 100644
> --- a/meta/recipes-core/glibc/glibc-package.inc
> +++ b/meta/recipes-core/glibc/glibc-package.inc
> @@ -35,7 +35,7 @@ RPROVIDES_${PN}-pcprofile = "eglibc-pcprofile"
>   RPROVIDES_${PN}-dbg = "eglibc-dbg"
>   libc_baselibs = "${base_libdir}/libcrypt*.so.* ${base_libdir}/libcrypt-*.so ${base_libdir}/libc.so.* ${base_libdir}/libc-*.so ${base_libdir}/libm*.so.* ${base_libdir}/libm-*.so ${base_libdir}/libmvec-*.so ${base_libdir}/ld*.so.* ${base_libdir}/ld-*.so ${base_libdir}/libpthread*.so.* ${base_libdir}/libpthread-*.so ${base_libdir}/libresolv*.so.* ${base_libdir}/libresolv-*.so ${base_libdir}/librt*.so.* ${base_libdir}/librt-*.so ${base_libdir}/libutil*.so.* ${base_libdir}/libutil-*.so ${base_libdir}/libnsl*.so.* ${base_libdir}/libnsl-*.so ${base_libdir}/libnss_files*.so.* ${base_libdir}/libnss_files-*.so ${base_libdir}/libnss_compat*.so.* ${base_libdir}/libnss_compat-*.so ${base_libdir}/libnss_dns*.so.* ${base_libdir}/libnss_dns-*.so ${base_libdir}/libdl*.so.* ${base_libdir}/libdl-*.so ${base_libdir}/libanl*.so.* ${base_libdir}/libanl-*.so ${base_libdir}/libBrokenLocale*.so.* ${base_libdir}/libBrokenLocale-*.so"
>   libc_baselibs_append_aarch64 = " /lib/ld-linux-aarch64*.so.1"
> -INSANE_SKIP_glibc_append_aarch64 = " libdir"
> +INSANE_SKIP_${PN}_append_aarch64 = " libdir"
>
>   FILES_${PN} = "${libc_baselibs} ${libexecdir}/* ${@base_conditional('USE_LDCONFIG', '1', '${base_sbindir}/ldconfig ${sysconfdir}/ld.so.conf', '', d)}"
>   FILES_ldd = "${bindir}/ldd"
>


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

* Re: [PATCH] glibc-package: use ${PN} in INSANE_SKIP
  2015-08-24  3:36 ` Robert Yang
@ 2015-08-24  7:43   ` Martin Jansa
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2015-08-24  7:43 UTC (permalink / raw)
  To: Robert Yang; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 3589 bytes --]

Thanks Robert!

On Mon, Aug 24, 2015 at 5:36 AM, Robert Yang <liezhi.yang@windriver.com>
wrote:

>
>
> On 08/18/2015 09:55 PM, Martin Jansa wrote:
>
>> * INSANE_SKIP_${PN}_append_aarch64 is causing following warning in some
>>    setups:
>>    WARNING: Variable key INSANE_SKIP_${PN} () replaces original key
>> INSANE_SKIP_glibc ().
>> * in worst case this will be applied also for glibc-initial package
>>    which is using the same glibc-package.inc, but glibc-initial doesn't
>>    create any packages so we should be fine
>> * someone building for aarch64 should confirm verify that this
>>    INSANE_SKIP is still needed and cannot be fixed properly it was
>>
>
> Hi Martin,
>
> I verified that we still need the patch, otherwise warnings:
>
> MACHINE ?= "qemuarm64"
> require conf/multilib.conf
> MULTILIBS = "multilib:lib32"
> DEFAULTTUNE_virtclass-multilib-lib32 = "armv7a"
>
> $ bitbake glibc -ccleansstate && bitbake glibc
> WARNING: QA Issue: glibc: found library in wrong location:
> /lib/ld-linux-aarch64.so.1 [libdir]
>
> // Robert
>
>
>    introduced in:
>>      commit aeb6f53dd607ceb0d2265a05c27f751109c73752
>>      Author: Mark Hatle <mark.hatle@windriver.com>
>>      Date:   Thu Dec 18 16:51:13 2014 +0800
>>
>>      glibc-package: aarch64 enable symlink for ABI compliance
>>
>>      aarch64 requires the ld.so to be present in /lib, even if the rest
>>      of the libraries are installed into an alternative directory.
>>
>>      See: https://sourceware.org/glibc/wiki/ABIList
>>
>>      Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
>>      Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>>
>> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
>> ---
>>   meta/recipes-core/glibc/glibc-package.inc | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-core/glibc/glibc-package.inc
>> b/meta/recipes-core/glibc/glibc-package.inc
>> index def0e0c..c72a49e 100644
>> --- a/meta/recipes-core/glibc/glibc-package.inc
>> +++ b/meta/recipes-core/glibc/glibc-package.inc
>> @@ -35,7 +35,7 @@ RPROVIDES_${PN}-pcprofile = "eglibc-pcprofile"
>>   RPROVIDES_${PN}-dbg = "eglibc-dbg"
>>   libc_baselibs = "${base_libdir}/libcrypt*.so.*
>> ${base_libdir}/libcrypt-*.so ${base_libdir}/libc.so.*
>> ${base_libdir}/libc-*.so ${base_libdir}/libm*.so.* ${base_libdir}/libm-*.so
>> ${base_libdir}/libmvec-*.so ${base_libdir}/ld*.so.* ${base_libdir}/ld-*.so
>> ${base_libdir}/libpthread*.so.* ${base_libdir}/libpthread-*.so
>> ${base_libdir}/libresolv*.so.* ${base_libdir}/libresolv-*.so
>> ${base_libdir}/librt*.so.* ${base_libdir}/librt-*.so
>> ${base_libdir}/libutil*.so.* ${base_libdir}/libutil-*.so
>> ${base_libdir}/libnsl*.so.* ${base_libdir}/libnsl-*.so
>> ${base_libdir}/libnss_files*.so.* ${base_libdir}/libnss_files-*.so
>> ${base_libdir}/libnss_compat*.so.* ${base_libdir}/libnss_compat-*.so
>> ${base_libdir}/libnss_dns*.so.* ${base_libdir}/libnss_dns-*.so
>> ${base_libdir}/libdl*.so.* ${base_libdir}/libdl-*.so
>> ${base_libdir}/libanl*.so.* ${base_libdir}/libanl-*.so
>> ${base_libdir}/libBrokenLocale*.so.* ${base_libdir}/libBrokenLocale-*.so"
>>   libc_baselibs_append_aarch64 = " /lib/ld-linux-aarch64*.so.1"
>> -INSANE_SKIP_glibc_append_aarch64 = " libdir"
>> +INSANE_SKIP_${PN}_append_aarch64 = " libdir"
>>
>>   FILES_${PN} = "${libc_baselibs} ${libexecdir}/*
>> ${@base_conditional('USE_LDCONFIG', '1', '${base_sbindir}/ldconfig
>> ${sysconfdir}/ld.so.conf', '', d)}"
>>   FILES_ldd = "${bindir}/ldd"
>>
>>

[-- Attachment #2: Type: text/html, Size: 4826 bytes --]

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

end of thread, other threads:[~2015-08-24  7:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-18 13:55 [PATCH] glibc-package: use ${PN} in INSANE_SKIP Martin Jansa
2015-08-24  3:36 ` Robert Yang
2015-08-24  7:43   ` Martin Jansa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.