* [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64.
@ 2024-02-26 5:32 leimaohui
2024-02-26 6:19 ` Khem Raj
0 siblings, 1 reply; 5+ messages in thread
From: leimaohui @ 2024-02-26 5:32 UTC (permalink / raw)
To: openembedded-core; +Cc: Lei Maohui
From: Lei Maohui <leimaohui@fujitsu.com>
Error: Transaction test error:
file /usr/include/finclude/math-vector-fortran.h from install of lib32-libc6-dev-2.39+git0+312e159626-r0.armv7ahf_neon conflicts with file from package libc6-dev-2.39+git0+312e159626-r0.aarch64
The difference of math-vector-fortran.h between 32bit and 64bit is as
the following:
--- tmp/work/aarch64-linux/glibc/2.39+git/image/usr/include/finclude/math-vector-fortran.h 2024-02-26 03:41:59.560000000 +0000
+++ tmp/work/armv7ahf-neon-xmllib32-linux-gnueabi/lib32-glibc/2.39+git/image/usr/include/finclude/math-vector-fortran.h 2024-02-26 02:22:28.592000000 +0000
@@ -15,33 +15,5 @@
! You should have received a copy of the GNU Lesser General Public
! License along with the GNU C Library; if not, see
! <https://www.gnu.org/licenses/>.
-!GCC$ builtin (acos) attributes simd (notinbranch)
-!GCC$ builtin (acosf) attributes simd (notinbranch)
-!GCC$ builtin (asin) attributes simd (notinbranch)
-!GCC$ builtin (asinf) attributes simd (notinbranch)
-!GCC$ builtin (atan) attributes simd (notinbranch)
-!GCC$ builtin (atanf) attributes simd (notinbranch)
-!GCC$ builtin (atan2) attributes simd (notinbranch)
-!GCC$ builtin (atan2f) attributes simd (notinbranch)
-!GCC$ builtin (cos) attributes simd (notinbranch)
-!GCC$ builtin (cosf) attributes simd (notinbranch)
-!GCC$ builtin (exp) attributes simd (notinbranch)
-!GCC$ builtin (expf) attributes simd (notinbranch)
-!GCC$ builtin (exp10) attributes simd (notinbranch)
-!GCC$ builtin (exp10f) attributes simd (notinbranch)
-!GCC$ builtin (exp2) attributes simd (notinbranch)
-!GCC$ builtin (exp2f) attributes simd (notinbranch)
-!GCC$ builtin (expm1) attributes simd (notinbranch)
-!GCC$ builtin (expm1f) attributes simd (notinbranch)
-!GCC$ builtin (log) attributes simd (notinbranch)
-!GCC$ builtin (logf) attributes simd (notinbranch)
-!GCC$ builtin (log10) attributes simd (notinbranch)
-!GCC$ builtin (log10f) attributes simd (notinbranch)
-!GCC$ builtin (log1p) attributes simd (notinbranch)
-!GCC$ builtin (log1pf) attributes simd (notinbranch)
-!GCC$ builtin (log2) attributes simd (notinbranch)
-!GCC$ builtin (log2f) attributes simd (notinbranch)
-!GCC$ builtin (sin) attributes simd (notinbranch)
-!GCC$ builtin (sinf) attributes simd (notinbranch)
-!GCC$ builtin (tan) attributes simd (notinbranch)
-!GCC$ builtin (tanf) attributes simd (notinbranch)
+
+! No SIMD math functions are available for this platform.
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
---
meta/recipes-core/glibc/glibc-package.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc
index 1ef987be0a..19eb7afa81 100644
--- a/meta/recipes-core/glibc/glibc-package.inc
+++ b/meta/recipes-core/glibc/glibc-package.inc
@@ -167,6 +167,7 @@ do_install_armmultilib () {
oe_multilib_header fpu_control.h gnu/lib-names.h gnu/stubs.h ieee754.h
oe_multilib_header sys/elf.h sys/procfs.h sys/ptrace.h sys/ucontext.h sys/user.h
+ oe_multilib_header finclude/math-vector-fortran.h
}
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64.
2024-02-26 5:32 [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64 leimaohui
@ 2024-02-26 6:19 ` Khem Raj
2024-03-08 0:22 ` Maohui Lei (Fujitsu)
0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2024-02-26 6:19 UTC (permalink / raw)
To: leimaohui; +Cc: openembedded-core
lgtm.
On Sun, Feb 25, 2024 at 9:32 PM leimaohui via lists.openembedded.org
<leimaohui=fujitsu.com@lists.openembedded.org> wrote:
>
> From: Lei Maohui <leimaohui@fujitsu.com>
>
> Error: Transaction test error:
> file /usr/include/finclude/math-vector-fortran.h from install of lib32-libc6-dev-2.39+git0+312e159626-r0.armv7ahf_neon conflicts with file from package libc6-dev-2.39+git0+312e159626-r0.aarch64
>
> The difference of math-vector-fortran.h between 32bit and 64bit is as
> the following:
>
> --- tmp/work/aarch64-linux/glibc/2.39+git/image/usr/include/finclude/math-vector-fortran.h 2024-02-26 03:41:59.560000000 +0000
> +++ tmp/work/armv7ahf-neon-xmllib32-linux-gnueabi/lib32-glibc/2.39+git/image/usr/include/finclude/math-vector-fortran.h 2024-02-26 02:22:28.592000000 +0000
> @@ -15,33 +15,5 @@
> ! You should have received a copy of the GNU Lesser General Public
> ! License along with the GNU C Library; if not, see
> ! <https://www.gnu.org/licenses/>.
> -!GCC$ builtin (acos) attributes simd (notinbranch)
> -!GCC$ builtin (acosf) attributes simd (notinbranch)
> -!GCC$ builtin (asin) attributes simd (notinbranch)
> -!GCC$ builtin (asinf) attributes simd (notinbranch)
> -!GCC$ builtin (atan) attributes simd (notinbranch)
> -!GCC$ builtin (atanf) attributes simd (notinbranch)
> -!GCC$ builtin (atan2) attributes simd (notinbranch)
> -!GCC$ builtin (atan2f) attributes simd (notinbranch)
> -!GCC$ builtin (cos) attributes simd (notinbranch)
> -!GCC$ builtin (cosf) attributes simd (notinbranch)
> -!GCC$ builtin (exp) attributes simd (notinbranch)
> -!GCC$ builtin (expf) attributes simd (notinbranch)
> -!GCC$ builtin (exp10) attributes simd (notinbranch)
> -!GCC$ builtin (exp10f) attributes simd (notinbranch)
> -!GCC$ builtin (exp2) attributes simd (notinbranch)
> -!GCC$ builtin (exp2f) attributes simd (notinbranch)
> -!GCC$ builtin (expm1) attributes simd (notinbranch)
> -!GCC$ builtin (expm1f) attributes simd (notinbranch)
> -!GCC$ builtin (log) attributes simd (notinbranch)
> -!GCC$ builtin (logf) attributes simd (notinbranch)
> -!GCC$ builtin (log10) attributes simd (notinbranch)
> -!GCC$ builtin (log10f) attributes simd (notinbranch)
> -!GCC$ builtin (log1p) attributes simd (notinbranch)
> -!GCC$ builtin (log1pf) attributes simd (notinbranch)
> -!GCC$ builtin (log2) attributes simd (notinbranch)
> -!GCC$ builtin (log2f) attributes simd (notinbranch)
> -!GCC$ builtin (sin) attributes simd (notinbranch)
> -!GCC$ builtin (sinf) attributes simd (notinbranch)
> -!GCC$ builtin (tan) attributes simd (notinbranch)
> -!GCC$ builtin (tanf) attributes simd (notinbranch)
> +
> +! No SIMD math functions are available for this platform.
>
> Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
> ---
> meta/recipes-core/glibc/glibc-package.inc | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc
> index 1ef987be0a..19eb7afa81 100644
> --- a/meta/recipes-core/glibc/glibc-package.inc
> +++ b/meta/recipes-core/glibc/glibc-package.inc
> @@ -167,6 +167,7 @@ do_install_armmultilib () {
> oe_multilib_header fpu_control.h gnu/lib-names.h gnu/stubs.h ieee754.h
>
> oe_multilib_header sys/elf.h sys/procfs.h sys/ptrace.h sys/ucontext.h sys/user.h
> + oe_multilib_header finclude/math-vector-fortran.h
> }
>
>
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#196179): https://lists.openembedded.org/g/openembedded-core/message/196179
> Mute This Topic: https://lists.openembedded.org/mt/104577604/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 5+ messages in thread* RE: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64.
2024-02-26 6:19 ` Khem Raj
@ 2024-03-08 0:22 ` Maohui Lei (Fujitsu)
2024-03-11 22:25 ` Alexandre Belloni
0 siblings, 1 reply; 5+ messages in thread
From: Maohui Lei (Fujitsu) @ 2024-03-08 0:22 UTC (permalink / raw)
To: openembedded-core@lists.openembedded.org
Ping
> -----Original Message-----
> From: openembedded-core@lists.openembedded.org
> <openembedded-core@lists.openembedded.org> On Behalf Of Khem Raj
> Sent: Monday, February 26, 2024 2:19 PM
> To: Lei, Maohui <leimaohui@fujitsu.com>
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on
> aarch64.
>
> lgtm.
>
> On Sun, Feb 25, 2024 at 9:32 PM leimaohui via lists.openembedded.org
> <leimaohui=fujitsu.com@lists.openembedded.org> wrote:
> >
> > From: Lei Maohui <leimaohui@fujitsu.com>
> >
> > Error: Transaction test error:
> > file /usr/include/finclude/math-vector-fortran.h from install of
> > lib32-libc6-dev-2.39+git0+312e159626-r0.armv7ahf_neon conflicts with
> > file from package libc6-dev-2.39+git0+312e159626-r0.aarch64
> >
> > The difference of math-vector-fortran.h between 32bit and 64bit is as
> > the following:
> >
> > ---
> tmp/work/aarch64-linux/glibc/2.39+git/image/usr/include/finclude/math-vecto
> r-fortran.h 2024-02-26 03:41:59.560000000 +0000
> > +++ tmp/work/armv7ahf-neon-xmllib32-linux-gnueabi/lib32-glibc/2.39+git
> > +++ /image/usr/include/finclude/math-vector-fortran.h 2024-02-26
> > +++ 02:22:28.592000000 +0000
> > @@ -15,33 +15,5 @@
> > ! You should have received a copy of the GNU Lesser General Public
> > ! License along with the GNU C Library; if not, see
> > ! <https://www.gnu.org/licenses/>.
> > -!GCC$ builtin (acos) attributes simd (notinbranch) -!GCC$ builtin
> > (acosf) attributes simd (notinbranch) -!GCC$ builtin (asin) attributes
> > simd (notinbranch) -!GCC$ builtin (asinf) attributes simd
> > (notinbranch) -!GCC$ builtin (atan) attributes simd (notinbranch)
> > -!GCC$ builtin (atanf) attributes simd (notinbranch) -!GCC$ builtin
> > (atan2) attributes simd (notinbranch) -!GCC$ builtin (atan2f)
> > attributes simd (notinbranch) -!GCC$ builtin (cos) attributes simd
> > (notinbranch) -!GCC$ builtin (cosf) attributes simd (notinbranch)
> > -!GCC$ builtin (exp) attributes simd (notinbranch) -!GCC$ builtin
> > (expf) attributes simd (notinbranch) -!GCC$ builtin (exp10) attributes
> > simd (notinbranch) -!GCC$ builtin (exp10f) attributes simd
> > (notinbranch) -!GCC$ builtin (exp2) attributes simd (notinbranch)
> > -!GCC$ builtin (exp2f) attributes simd (notinbranch) -!GCC$ builtin
> > (expm1) attributes simd (notinbranch) -!GCC$ builtin (expm1f)
> > attributes simd (notinbranch) -!GCC$ builtin (log) attributes simd
> > (notinbranch) -!GCC$ builtin (logf) attributes simd (notinbranch)
> > -!GCC$ builtin (log10) attributes simd (notinbranch) -!GCC$ builtin
> > (log10f) attributes simd (notinbranch) -!GCC$ builtin (log1p)
> > attributes simd (notinbranch) -!GCC$ builtin (log1pf) attributes simd
> > (notinbranch) -!GCC$ builtin (log2) attributes simd (notinbranch)
> > -!GCC$ builtin (log2f) attributes simd (notinbranch) -!GCC$ builtin
> > (sin) attributes simd (notinbranch) -!GCC$ builtin (sinf) attributes
> > simd (notinbranch) -!GCC$ builtin (tan) attributes simd (notinbranch)
> > -!GCC$ builtin (tanf) attributes simd (notinbranch)
> > +
> > +! No SIMD math functions are available for this platform.
> >
> > Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
> > ---
> > meta/recipes-core/glibc/glibc-package.inc | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/meta/recipes-core/glibc/glibc-package.inc
> > b/meta/recipes-core/glibc/glibc-package.inc
> > index 1ef987be0a..19eb7afa81 100644
> > --- a/meta/recipes-core/glibc/glibc-package.inc
> > +++ b/meta/recipes-core/glibc/glibc-package.inc
> > @@ -167,6 +167,7 @@ do_install_armmultilib () {
> > oe_multilib_header fpu_control.h gnu/lib-names.h gnu/stubs.h
> > ieee754.h
> >
> > oe_multilib_header sys/elf.h sys/procfs.h sys/ptrace.h
> > sys/ucontext.h sys/user.h
> > + oe_multilib_header finclude/math-vector-fortran.h
> > }
> >
> >
> > --
> > 2.34.1
> >
> >
> >
> >
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64.
2024-03-08 0:22 ` Maohui Lei (Fujitsu)
@ 2024-03-11 22:25 ` Alexandre Belloni
2024-03-12 0:50 ` Maohui Lei (Fujitsu)
0 siblings, 1 reply; 5+ messages in thread
From: Alexandre Belloni @ 2024-03-11 22:25 UTC (permalink / raw)
To: leimaohui; +Cc: openembedded-core@lists.openembedded.org
https://lore.kernel.org/all/b023614f7765fc003a4aa854440c0b66d200d27b.camel@linuxfoundation.org/
On 07/03/2024 16:22:32-0800, leimaohui via lists.openembedded.org wrote:
> Ping
>
>
>
> > -----Original Message-----
> > From: openembedded-core@lists.openembedded.org
> > <openembedded-core@lists.openembedded.org> On Behalf Of Khem Raj
> > Sent: Monday, February 26, 2024 2:19 PM
> > To: Lei, Maohui <leimaohui@fujitsu.com>
> > Cc: openembedded-core@lists.openembedded.org
> > Subject: Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on
> > aarch64.
> >
> > lgtm.
> >
> > On Sun, Feb 25, 2024 at 9:32 PM leimaohui via lists.openembedded.org
> > <leimaohui=fujitsu.com@lists.openembedded.org> wrote:
> > >
> > > From: Lei Maohui <leimaohui@fujitsu.com>
> > >
> > > Error: Transaction test error:
> > > file /usr/include/finclude/math-vector-fortran.h from install of
> > > lib32-libc6-dev-2.39+git0+312e159626-r0.armv7ahf_neon conflicts with
> > > file from package libc6-dev-2.39+git0+312e159626-r0.aarch64
> > >
> > > The difference of math-vector-fortran.h between 32bit and 64bit is as
> > > the following:
> > >
> > > ---
> > tmp/work/aarch64-linux/glibc/2.39+git/image/usr/include/finclude/math-vecto
> > r-fortran.h 2024-02-26 03:41:59.560000000 +0000
> > > +++ tmp/work/armv7ahf-neon-xmllib32-linux-gnueabi/lib32-glibc/2.39+git
> > > +++ /image/usr/include/finclude/math-vector-fortran.h 2024-02-26
> > > +++ 02:22:28.592000000 +0000
> > > @@ -15,33 +15,5 @@
> > > ! You should have received a copy of the GNU Lesser General Public
> > > ! License along with the GNU C Library; if not, see
> > > ! <https://www.gnu.org/licenses/>.
> > > -!GCC$ builtin (acos) attributes simd (notinbranch) -!GCC$ builtin
> > > (acosf) attributes simd (notinbranch) -!GCC$ builtin (asin) attributes
> > > simd (notinbranch) -!GCC$ builtin (asinf) attributes simd
> > > (notinbranch) -!GCC$ builtin (atan) attributes simd (notinbranch)
> > > -!GCC$ builtin (atanf) attributes simd (notinbranch) -!GCC$ builtin
> > > (atan2) attributes simd (notinbranch) -!GCC$ builtin (atan2f)
> > > attributes simd (notinbranch) -!GCC$ builtin (cos) attributes simd
> > > (notinbranch) -!GCC$ builtin (cosf) attributes simd (notinbranch)
> > > -!GCC$ builtin (exp) attributes simd (notinbranch) -!GCC$ builtin
> > > (expf) attributes simd (notinbranch) -!GCC$ builtin (exp10) attributes
> > > simd (notinbranch) -!GCC$ builtin (exp10f) attributes simd
> > > (notinbranch) -!GCC$ builtin (exp2) attributes simd (notinbranch)
> > > -!GCC$ builtin (exp2f) attributes simd (notinbranch) -!GCC$ builtin
> > > (expm1) attributes simd (notinbranch) -!GCC$ builtin (expm1f)
> > > attributes simd (notinbranch) -!GCC$ builtin (log) attributes simd
> > > (notinbranch) -!GCC$ builtin (logf) attributes simd (notinbranch)
> > > -!GCC$ builtin (log10) attributes simd (notinbranch) -!GCC$ builtin
> > > (log10f) attributes simd (notinbranch) -!GCC$ builtin (log1p)
> > > attributes simd (notinbranch) -!GCC$ builtin (log1pf) attributes simd
> > > (notinbranch) -!GCC$ builtin (log2) attributes simd (notinbranch)
> > > -!GCC$ builtin (log2f) attributes simd (notinbranch) -!GCC$ builtin
> > > (sin) attributes simd (notinbranch) -!GCC$ builtin (sinf) attributes
> > > simd (notinbranch) -!GCC$ builtin (tan) attributes simd (notinbranch)
> > > -!GCC$ builtin (tanf) attributes simd (notinbranch)
> > > +
> > > +! No SIMD math functions are available for this platform.
> > >
> > > Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
> > > ---
> > > meta/recipes-core/glibc/glibc-package.inc | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/meta/recipes-core/glibc/glibc-package.inc
> > > b/meta/recipes-core/glibc/glibc-package.inc
> > > index 1ef987be0a..19eb7afa81 100644
> > > --- a/meta/recipes-core/glibc/glibc-package.inc
> > > +++ b/meta/recipes-core/glibc/glibc-package.inc
> > > @@ -167,6 +167,7 @@ do_install_armmultilib () {
> > > oe_multilib_header fpu_control.h gnu/lib-names.h gnu/stubs.h
> > > ieee754.h
> > >
> > > oe_multilib_header sys/elf.h sys/procfs.h sys/ptrace.h
> > > sys/ucontext.h sys/user.h
> > > + oe_multilib_header finclude/math-vector-fortran.h
> > > }
> > >
> > >
> > > --
> > > 2.34.1
> > >
> > >
> > >
> > >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#196838): https://lists.openembedded.org/g/openembedded-core/message/196838
> Mute This Topic: https://lists.openembedded.org/mt/104577604/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread* RE: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64.
2024-03-11 22:25 ` Alexandre Belloni
@ 2024-03-12 0:50 ` Maohui Lei (Fujitsu)
0 siblings, 0 replies; 5+ messages in thread
From: Maohui Lei (Fujitsu) @ 2024-03-12 0:50 UTC (permalink / raw)
To: Alexandre Belloni; +Cc: openembedded-core@lists.openembedded.org
Hi,
Thank you very much. I'm sorry I didn't notice the same patch with me.
Best regards
Lei
> -----Original Message-----
> From: Alexandre Belloni <alexandre.belloni@bootlin.com>
> Sent: Tuesday, March 12, 2024 6:26 AM
> To: Lei, Maohui <leimaohui@fujitsu.com>
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on
> aarch64.
>
> https://lore.kernel.org/all/b023614f7765fc003a4aa854440c0b66d200d27b.cam
> el@linuxfoundation.org/
>
> On 07/03/2024 16:22:32-0800, leimaohui via lists.openembedded.org wrote:
> > Ping
> >
> >
> >
> > > -----Original Message-----
> > > From: openembedded-core@lists.openembedded.org
> > > <openembedded-core@lists.openembedded.org> On Behalf Of Khem Raj
> > > Sent: Monday, February 26, 2024 2:19 PM
> > > To: Lei, Maohui <leimaohui@fujitsu.com>
> > > Cc: openembedded-core@lists.openembedded.org
> > > Subject: Re: [OE-core] [PATCH] glibc: Fix conflict error when enbale
> > > multilib on aarch64.
> > >
> > > lgtm.
> > >
> > > On Sun, Feb 25, 2024 at 9:32 PM leimaohui via lists.openembedded.org
> > > <leimaohui=fujitsu.com@lists.openembedded.org> wrote:
> > > >
> > > > From: Lei Maohui <leimaohui@fujitsu.com>
> > > >
> > > > Error: Transaction test error:
> > > > file /usr/include/finclude/math-vector-fortran.h from install of
> > > > lib32-libc6-dev-2.39+git0+312e159626-r0.armv7ahf_neon conflicts
> > > > with file from package libc6-dev-2.39+git0+312e159626-r0.aarch64
> > > >
> > > > The difference of math-vector-fortran.h between 32bit and 64bit is
> > > > as the following:
> > > >
> > > > ---
> > >
> tmp/work/aarch64-linux/glibc/2.39+git/image/usr/include/finclude/math-vecto
> > > r-fortran.h 2024-02-26 03:41:59.560000000 +0000
> > > > +++ tmp/work/armv7ahf-neon-xmllib32-linux-gnueabi/lib32-glibc/2.39
> > > > +++ +git /image/usr/include/finclude/math-vector-fortran.h
> > > > +++ 2024-02-26
> > > > +++ 02:22:28.592000000 +0000
> > > > @@ -15,33 +15,5 @@
> > > > ! You should have received a copy of the GNU Lesser General Public
> > > > ! License along with the GNU C Library; if not, see
> > > > ! <https://www.gnu.org/licenses/>.
> > > > -!GCC$ builtin (acos) attributes simd (notinbranch) -!GCC$ builtin
> > > > (acosf) attributes simd (notinbranch) -!GCC$ builtin (asin)
> > > > attributes simd (notinbranch) -!GCC$ builtin (asinf) attributes
> > > > simd
> > > > (notinbranch) -!GCC$ builtin (atan) attributes simd (notinbranch)
> > > > -!GCC$ builtin (atanf) attributes simd (notinbranch) -!GCC$
> > > > builtin
> > > > (atan2) attributes simd (notinbranch) -!GCC$ builtin (atan2f)
> > > > attributes simd (notinbranch) -!GCC$ builtin (cos) attributes simd
> > > > (notinbranch) -!GCC$ builtin (cosf) attributes simd (notinbranch)
> > > > -!GCC$ builtin (exp) attributes simd (notinbranch) -!GCC$ builtin
> > > > (expf) attributes simd (notinbranch) -!GCC$ builtin (exp10)
> > > > attributes simd (notinbranch) -!GCC$ builtin (exp10f) attributes
> > > > simd
> > > > (notinbranch) -!GCC$ builtin (exp2) attributes simd (notinbranch)
> > > > -!GCC$ builtin (exp2f) attributes simd (notinbranch) -!GCC$
> > > > builtin
> > > > (expm1) attributes simd (notinbranch) -!GCC$ builtin (expm1f)
> > > > attributes simd (notinbranch) -!GCC$ builtin (log) attributes simd
> > > > (notinbranch) -!GCC$ builtin (logf) attributes simd (notinbranch)
> > > > -!GCC$ builtin (log10) attributes simd (notinbranch) -!GCC$
> > > > builtin
> > > > (log10f) attributes simd (notinbranch) -!GCC$ builtin (log1p)
> > > > attributes simd (notinbranch) -!GCC$ builtin (log1pf) attributes
> > > > simd
> > > > (notinbranch) -!GCC$ builtin (log2) attributes simd (notinbranch)
> > > > -!GCC$ builtin (log2f) attributes simd (notinbranch) -!GCC$
> > > > builtin
> > > > (sin) attributes simd (notinbranch) -!GCC$ builtin (sinf)
> > > > attributes simd (notinbranch) -!GCC$ builtin (tan) attributes simd
> > > > (notinbranch) -!GCC$ builtin (tanf) attributes simd (notinbranch)
> > > > +
> > > > +! No SIMD math functions are available for this platform.
> > > >
> > > > Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
> > > > ---
> > > > meta/recipes-core/glibc/glibc-package.inc | 1 +
> > > > 1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/meta/recipes-core/glibc/glibc-package.inc
> > > > b/meta/recipes-core/glibc/glibc-package.inc
> > > > index 1ef987be0a..19eb7afa81 100644
> > > > --- a/meta/recipes-core/glibc/glibc-package.inc
> > > > +++ b/meta/recipes-core/glibc/glibc-package.inc
> > > > @@ -167,6 +167,7 @@ do_install_armmultilib () {
> > > > oe_multilib_header fpu_control.h gnu/lib-names.h
> > > > gnu/stubs.h ieee754.h
> > > >
> > > > oe_multilib_header sys/elf.h sys/procfs.h sys/ptrace.h
> > > > sys/ucontext.h sys/user.h
> > > > + oe_multilib_header finclude/math-vector-fortran.h
> > > > }
> > > >
> > > >
> > > > --
> > > > 2.34.1
> > > >
> > > >
> > > >
> > > >
>
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#196838):
> > https://lists.openembedded.org/g/openembedded-core/message/196838
> > Mute This Topic: https://lists.openembedded.org/mt/104577604/3617179
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
> > [alexandre.belloni@bootlin.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin Embedded Linux and Kernel
> engineering https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-12 0:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-26 5:32 [OE-core] [PATCH] glibc: Fix conflict error when enbale multilib on aarch64 leimaohui
2024-02-26 6:19 ` Khem Raj
2024-03-08 0:22 ` Maohui Lei (Fujitsu)
2024-03-11 22:25 ` Alexandre Belloni
2024-03-12 0:50 ` Maohui Lei (Fujitsu)
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.