All of lore.kernel.org
 help / color / mirror / Atom feed
* Need Support: how to install Multilib in yocto: I am enabling Multilib ,lib32-gcc, lib32g++ and lib32fotran #error
@ 2024-12-03 19:17 Kamal GMBH
  2024-12-03 21:14 ` [oe] " Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Kamal GMBH @ 2024-12-03 19:17 UTC (permalink / raw)
  To: openembedded-devel

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

*local.conf file:*

*DISTRO_FEATURES:append = " multilib"*
*# Enable multilib support*
*MULTILIBS = "multilib:lib32"*
*DEFAULTTUNE_virtclass-multilib-lib32 = "x86"*
*# Include lib32 versions of GCC, G++, and Fortran*
*IMAGE_INSTALL:append = " lib32-libgcc lib32-gcc-runtime lib32-libstdc++ lib32-gfortran"*

umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$ *bitbake-layers show-recipes | grep libgcc*
libgcc:
libgcc-initial:

umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$
*Here lib32-gcc details is not showing ..*
===============================
*another try:*
*require conf/multilib.conf  => newly added*
local.conf file:
DISTRO_FEATURES:append = " multilib"
# Enable multilib support
MULTILIBS = "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 = "x86"
# Include lib32 versions of GCC, G++, and Fortran
IMAGE_INSTALL:append = " lib32-libgcc lib32-gcc-runtime lib32-libstdc++ lib32-gfortran"

umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$ *bitbake-layers show-recipes | grep libgcc*
ERROR:  OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Toolchain tunings invalid:
No tuning found for lib32 multilib.
Traceback (most recent call last):
File "/media/nvme1/umesha/kamal-poky/poky/bitbake/bin/bitbake-layers", line 95, in <module>
ret = main()
File "/media/nvme1/umesha/kamal-poky/poky/bitbake/bin/bitbake-layers", line 85, in main
tinfoil.parse_recipes()
File "/media/nvme1/umesha/kamal-poky/poky/bitbake/lib/bb/tinfoil.py", line 448, in parse_recipes
self.run_actions(config_params)
File "/media/nvme1/umesha/kamal-poky/poky/bitbake/lib/bb/tinfoil.py", line 431, in run_actions
raise TinfoilUIException(ret)
bb.tinfoil.TinfoilUIException: 1
umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$
umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$

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

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

* Re: [oe] Need Support: how to install Multilib in yocto: I am enabling Multilib ,lib32-gcc, lib32g++ and lib32fotran #error
  2024-12-03 19:17 Need Support: how to install Multilib in yocto: I am enabling Multilib ,lib32-gcc, lib32g++ and lib32fotran #error Kamal GMBH
@ 2024-12-03 21:14 ` Martin Jansa
  2024-12-03 22:30   ` Kamal GMBH
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2024-12-03 21:14 UTC (permalink / raw)
  To: kamalgmbh32; +Cc: openembedded-devel

You're using wrong overrides syntax for DEFAULTTUNE, use : instead of _.

On Tue, Dec 3, 2024 at 10:00 PM Kamal GMBH via lists.openembedded.org
<kamalgmbh32=gmail.com@lists.openembedded.org> wrote:
>
> local.conf file:
>
> DISTRO_FEATURES:append = " multilib"
> # Enable multilib support
> MULTILIBS = "multilib:lib32"
> DEFAULTTUNE_virtclass-multilib-lib32 = "x86"
> # Include lib32 versions of GCC, G++, and Fortran
> IMAGE_INSTALL:append = " lib32-libgcc lib32-gcc-runtime lib32-libstdc++ lib32-gfortran"
>
> umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$ bitbake-layers show-recipes | grep libgcc
> libgcc:
> libgcc-initial:
>
> umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$
> Here lib32-gcc details is not showing ..
> ===============================
> another try:
> require conf/multilib.conf  => newly added
> local.conf file:
> DISTRO_FEATURES:append = " multilib"
> # Enable multilib support
> MULTILIBS = "multilib:lib32"
> DEFAULTTUNE_virtclass-multilib-lib32 = "x86"
> # Include lib32 versions of GCC, G++, and Fortran
> IMAGE_INSTALL:append = " lib32-libgcc lib32-gcc-runtime lib32-libstdc++ lib32-gfortran"
>
> umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$ bitbake-layers show-recipes | grep libgcc
> ERROR:  OE-core's config sanity checker detected a potential misconfiguration.
>     Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
>     Following is the list of potential problems / advisories:
>     Toolchain tunings invalid:
> No tuning found for lib32 multilib.
> Traceback (most recent call last):
>   File "/media/nvme1/umesha/kamal-poky/poky/bitbake/bin/bitbake-layers", line 95, in <module>
>     ret = main()
>   File "/media/nvme1/umesha/kamal-poky/poky/bitbake/bin/bitbake-layers", line 85, in main
>     tinfoil.parse_recipes()
>   File "/media/nvme1/umesha/kamal-poky/poky/bitbake/lib/bb/tinfoil.py", line 448, in parse_recipes
>     self.run_actions(config_params)
>   File "/media/nvme1/umesha/kamal-poky/poky/bitbake/lib/bb/tinfoil.py", line 431, in run_actions
>     raise TinfoilUIException(ret)
> bb.tinfoil.TinfoilUIException: 1
> umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$
> umesha@yocto-server-2:/media/nvme1/umesha/kamal-poky/poky/build$
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#114189): https://lists.openembedded.org/g/openembedded-devel/message/114189
> Mute This Topic: https://lists.openembedded.org/mt/109908401/3617156
> Mute #error:https://lists.openembedded.org/g/openembedded-devel/mutehashtag/error
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [martin.jansa@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: Need Support: how to install Multilib in yocto: I am enabling Multilib ,lib32-gcc, lib32g++ and lib32fotran #error
  2024-12-03 21:14 ` [oe] " Martin Jansa
@ 2024-12-03 22:30   ` Kamal GMBH
  0 siblings, 0 replies; 3+ messages in thread
From: Kamal GMBH @ 2024-12-03 22:30 UTC (permalink / raw)
  To: openembedded-devel

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

As per your suggestion,
i changed to DEFAULTTUNE:virtclass-multilib-lib32 = "x86" *but same result*

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

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

end of thread, other threads:[~2024-12-03 22:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-03 19:17 Need Support: how to install Multilib in yocto: I am enabling Multilib ,lib32-gcc, lib32g++ and lib32fotran #error Kamal GMBH
2024-12-03 21:14 ` [oe] " Martin Jansa
2024-12-03 22:30   ` Kamal GMBH

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.