All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35
@ 2021-12-13 10:00 bugzilla
  2021-12-13 16:27 ` [Buildroot] [Bug 14451] " bugzilla
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: bugzilla @ 2021-12-13 10:00 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=14451

            Bug ID: 14451
           Summary: nodejs won't build on Fedora 35
           Product: buildroot
           Version: 2021.08
          Hardware: All
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Other
          Assignee: unassigned@buildroot.uclibc.org
          Reporter: htenberge@gmail.com
                CC: buildroot@uclibc.org
  Target Milestone: ---

Although I'm using host-python, the nodejs build cycle uses at some point the
system python instead of the host python.

On Fedora 35 this is Python 3.10, causing problems. Switching to Python 3.9
system-wide fixes the issue.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [Bug 14451] nodejs won't build on Fedora 35
  2021-12-13 10:00 [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35 bugzilla
@ 2021-12-13 16:27 ` bugzilla
  2021-12-14 19:03 ` bugzilla
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 12+ messages in thread
From: bugzilla @ 2021-12-13 16:27 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=14451

--- Comment #1 from Vincent Fazio <vfazio@xes-inc.com> ---
Certain parts of the build invoke "python" and aren't using a full path to the
bin to do so. While PATH has been set to include the host built python3 and
PYTHON is set to host-python3 built bin, the build process is not respecting
that. We do not have a symlink python -> python3 (afaik most distros do not
include python by default, just python3) so when the build stage gets invoked
it's using the "python" available from PATH


 
LD_LIBRARY_PATH=/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/lib.host:/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/lib.target:$LD_LIBRARY_PATH;
export LD_LIBRARY_PATH; cd ../tools/v8_gypfiles; mkdir -p
/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/obj/gen/generate-bytecode-output-root/builtins-generated;
python ../../deps/v8/tools/run.py
"/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/v8-qemu-wrapper"
"/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/bytecode_builtins_list_generator"
"/mnt/development/buildroot/output/build/nodejs-14.18.1/out/Release/obj/gen/generate-bytecode-output-root/builtins-generated/bytecodes-builtins-list.h"

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [Bug 14451] nodejs won't build on Fedora 35
  2021-12-13 10:00 [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35 bugzilla
  2021-12-13 16:27 ` [Buildroot] [Bug 14451] " bugzilla
@ 2021-12-14 19:03 ` bugzilla
  2021-12-14 19:06   ` [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers Michael Taubert
  2021-12-22 14:10 ` [Buildroot] [Bug 14451] nodejs won't build on Fedora 35 bugzilla
  2022-01-09 16:28 ` bugzilla
  3 siblings, 1 reply; 12+ messages in thread
From: bugzilla @ 2021-12-14 19:03 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=14451

--- Comment #2 from Arnout Vandecappelle <arnout@mind.be> ---
We can use the same approach as in qt5webkit:

# QtWebkit's build system uses python, but only supports python2. We work
# around this by forcing python2 early in the PATH, via a python->python2
# symlink.
QT5WEBKIT_CONF_ENV = PATH=$(@D)/host-bin:$(BR_PATH)
QT5WEBKIT_MAKE_ENV = PATH=$(@D)/host-bin:$(BR_PATH)
define QT5WEBKIT_PYTHON2_SYMLINK
        mkdir -p $(@D)/host-bin
        ln -sf $(HOST_DIR)/bin/python2 $(@D)/host-bin/python
endef
QT5WEBKIT_PRE_CONFIGURE_HOOKS += QT5WEBKIT_PYTHON2_SYMLINK

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-14 19:03 ` bugzilla
@ 2021-12-14 19:06   ` Michael Taubert
  2021-12-16 17:28     ` Arnout Vandecappelle
       [not found]     ` <aafcded5-c0f4-4745-a226-da57d0e7a805__41403.4441857197$1639675757$gmane$org@mind.be>
  0 siblings, 2 replies; 12+ messages in thread
From: Michael Taubert @ 2021-12-14 19:06 UTC (permalink / raw)
  To: buildroot; +Cc: bernd.kuhls, romain.naour

Certain Gallium drivers need DRI3 support, otherwise opengl won't work.
On the Raspberry Pi 4, for example, glxgears will complain about

'Failed to open bo 1: permission denied'

These drivers must not be selected to disable DRI3 support. It seems to
be the same for Lima and Panfrost, please check bug 13831.

Signed-off-by: Michael Taubert <info@arachnodroid.de>
---
  package/mesa3d/mesa3d.mk | 6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
index 61b095ccca..9780d5a960 100644
--- a/package/mesa3d/mesa3d.mk
+++ b/package/mesa3d/mesa3d.mk
@@ -121,7 +121,11 @@ MESA3D_CONF_OPTS += \
         -Dgallium-extra-hud=true
  endif

-ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
+ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER) \
+       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_V3D) \
+       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VC4) \
+       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA) \
+       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_PANFROST),)
  MESA3D_CONF_OPTS += \
         -Ddri-drivers= -Ddri3=disabled
  else
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-14 19:06   ` [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers Michael Taubert
@ 2021-12-16 17:28     ` Arnout Vandecappelle
  2021-12-16 18:26       ` Michael Taubert
       [not found]     ` <aafcded5-c0f4-4745-a226-da57d0e7a805__41403.4441857197$1639675757$gmane$org@mind.be>
  1 sibling, 1 reply; 12+ messages in thread
From: Arnout Vandecappelle @ 2021-12-16 17:28 UTC (permalink / raw)
  To: Michael Taubert, buildroot; +Cc: bernd.kuhls, romain.naour

  Hi Michael,

On 14/12/2021 20:06, Michael Taubert wrote:
> Certain Gallium drivers need DRI3 support, otherwise opengl won't work.
> On the Raspberry Pi 4, for example, glxgears will complain about
> 
> 'Failed to open bo 1: permission denied'
> 
> These drivers must not be selected to disable DRI3 support. It seems to
> be the same for Lima and Panfrost, please check bug 13831.
> 
> Signed-off-by: Michael Taubert <info@arachnodroid.de>
> ---
>   package/mesa3d/mesa3d.mk | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
> index 61b095ccca..9780d5a960 100644
> --- a/package/mesa3d/mesa3d.mk
> +++ b/package/mesa3d/mesa3d.mk
> @@ -121,7 +121,11 @@ MESA3D_CONF_OPTS += \
>          -Dgallium-extra-hud=true
>   endif
> 
> -ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
> +ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER) \
> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_V3D) \
> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VC4) \
> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA) \
> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_PANFROST),)

  The mesa3d stuff goes way over my head, actually, but I would think that the 
proper solution here would be that these configs select 
BR2_PACKAGE_MESA3D_DRI_DRIVER.

  I know it sounds weird that a gallium driver is also a DRI driver, but I guess 
that's what it is...

  Bernd, can you comment?

  Regards,
  Arnout

>   MESA3D_CONF_OPTS += \
>          -Ddri-drivers= -Ddri3=disabled
>   else
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
       [not found]     ` <aafcded5-c0f4-4745-a226-da57d0e7a805__41403.4441857197$1639675757$gmane$org@mind.be>
@ 2021-12-16 18:12       ` Bernd Kuhls
  2021-12-16 18:33         ` Arnout Vandecappelle
  0 siblings, 1 reply; 12+ messages in thread
From: Bernd Kuhls @ 2021-12-16 18:12 UTC (permalink / raw)
  To: buildroot

Am Thu, 16 Dec 2021 18:28:56 +0100 schrieb Arnout Vandecappelle:

>   Bernd, can you comment?

Hi Arnout,

no, because I do not use buildroot on rbpi hardware.

But the topic was already discussed this summer, with no solution afaics:
https://patchwork.ozlabs.org/project/buildroot/list/?
series=248555&submitter=&state=*&q=&archive=&delegate=

Regards, Bernd

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-16 17:28     ` Arnout Vandecappelle
@ 2021-12-16 18:26       ` Michael Taubert
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Taubert @ 2021-12-16 18:26 UTC (permalink / raw)
  To: buildroot

Hi Arnout,

I'm not that familiar with these configs, yet. But if I understand it 
right, your advice is to have the selection of these Gallium drivers 
should also select BR2_PACKAGE_MESA3D_DRI_DRIVER.

I will have a look on how to do that tomorrow and provide another patch 
then.

Kind regards,
Michael

Am 16.12.2021 um 18:28 schrieb Arnout Vandecappelle:
>   Hi Michael,
> 
> On 14/12/2021 20:06, Michael Taubert wrote:
>> Certain Gallium drivers need DRI3 support, otherwise opengl won't work.
>> On the Raspberry Pi 4, for example, glxgears will complain about
>>
>> 'Failed to open bo 1: permission denied'
>>
>> These drivers must not be selected to disable DRI3 support. It seems to
>> be the same for Lima and Panfrost, please check bug 13831.
>>
>> Signed-off-by: Michael Taubert <info@arachnodroid.de>
>> ---
>>   package/mesa3d/mesa3d.mk | 6 +++++-
>>   1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
>> index 61b095ccca..9780d5a960 100644
>> --- a/package/mesa3d/mesa3d.mk
>> +++ b/package/mesa3d/mesa3d.mk
>> @@ -121,7 +121,11 @@ MESA3D_CONF_OPTS += \
>>          -Dgallium-extra-hud=true
>>   endif
>>
>> -ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
>> +ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER) \
>> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_V3D) \
>> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VC4) \
>> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA) \
>> +       $(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_PANFROST),)
> 
>   The mesa3d stuff goes way over my head, actually, but I would think 
> that the proper solution here would be that these configs select 
> BR2_PACKAGE_MESA3D_DRI_DRIVER.
> 
>   I know it sounds weird that a gallium driver is also a DRI driver, but 
> I guess that's what it is...
> 
>   Bernd, can you comment?
> 
>   Regards,
>   Arnout
> 
>>   MESA3D_CONF_OPTS += \
>>          -Ddri-drivers= -Ddri3=disabled
>>   else
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-16 18:12       ` Bernd Kuhls
@ 2021-12-16 18:33         ` Arnout Vandecappelle
  2021-12-16 21:45           ` Peter Seiderer
  2021-12-17 10:15           ` Michael Taubert
  0 siblings, 2 replies; 12+ messages in thread
From: Arnout Vandecappelle @ 2021-12-16 18:33 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot, Peter Seiderer, Michael Taubert



On 16/12/2021 19:12, Bernd Kuhls wrote:
> Am Thu, 16 Dec 2021 18:28:56 +0100 schrieb Arnout Vandecappelle:
> 
>>    Bernd, can you comment?
> 
> Hi Arnout,
> 
> no, because I do not use buildroot on rbpi hardware.
> 
> But the topic was already discussed this summer, with no solution afaics:
> https://patchwork.ozlabs.org/project/buildroot/list/?
> series=248555&submitter=&state=*&q=&archive=&delegate=

  Good find, thanks!

  Michael, can you try that patch [1] and see if it works for you?

  Peter, I think I'm just going to apply []] except that I'll make 
BR2_PACKAGE_MESA3D_DRI3 a blind option (i.e. not user visible, only selected 
automatically by the drivers, much like BR2_PACKAGE_MESA3D_DRI).

  My other major comment about that patch was that I suspected that it would 
need some 'select' statements, but I guess the autobuilders will inform us of 
that, so we can go ahead and merge it.

  Does that sound OK to you?

  Regards,
  Arnout


[1] 
https://patchwork.ozlabs.org/project/buildroot/patch/20210612223011.26118-1-ps.report@gmx.net/


> 
> Regards, Bernd
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-16 18:33         ` Arnout Vandecappelle
@ 2021-12-16 21:45           ` Peter Seiderer
  2021-12-17 10:15           ` Michael Taubert
  1 sibling, 0 replies; 12+ messages in thread
From: Peter Seiderer @ 2021-12-16 21:45 UTC (permalink / raw)
  To: Arnout Vandecappelle; +Cc: Bernd Kuhls, buildroot, Michael Taubert

Hello Arnout, *,

On Thu, 16 Dec 2021 19:33:20 +0100, Arnout Vandecappelle <arnout@mind.be> wrote:

> On 16/12/2021 19:12, Bernd Kuhls wrote:
> > Am Thu, 16 Dec 2021 18:28:56 +0100 schrieb Arnout Vandecappelle:
> >
> >>    Bernd, can you comment?
> >
> > Hi Arnout,
> >
> > no, because I do not use buildroot on rbpi hardware.
> >
> > But the topic was already discussed this summer, with no solution afaics:
> > https://patchwork.ozlabs.org/project/buildroot/list/?
> > series=248555&submitter=&state=*&q=&archive=&delegate=
>
>   Good find, thanks!
>
>   Michael, can you try that patch [1] and see if it works for you?
>
>   Peter, I think I'm just going to apply []] except that I'll make
> BR2_PACKAGE_MESA3D_DRI3 a blind option (i.e. not user visible, only selected
> automatically by the drivers, much like BR2_PACKAGE_MESA3D_DRI).
>
>   My other major comment about that patch was that I suspected that it would
> need some 'select' statements, but I guess the autobuilders will inform us of
> that, so we can go ahead and merge it.
>
>   Does that sound OK to you?

Fine with me ;-)

Regards,
Peter

>
>   Regards,
>   Arnout
>
>
> [1]
> https://patchwork.ozlabs.org/project/buildroot/patch/20210612223011.26118-1-ps.report@gmx.net/
>
>
> >
> > Regards, Bernd
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot@buildroot.org
> > https://lists.buildroot.org/mailman/listinfo/buildroot
> >

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers
  2021-12-16 18:33         ` Arnout Vandecappelle
  2021-12-16 21:45           ` Peter Seiderer
@ 2021-12-17 10:15           ` Michael Taubert
  1 sibling, 0 replies; 12+ messages in thread
From: Michael Taubert @ 2021-12-17 10:15 UTC (permalink / raw)
  To: buildroot

Hi!

I've applied the patch to the latest origin/master. One hunk has been 
rejected:

--- package/mesa3d/Config.in
+++ package/mesa3d/Config.in
@@ -70,6 +75,8 @@  config BR2_PACKAGE_MESA3D_DRI_DRIVER
                 !BR2_PACKAGE_MESA3D_OPENGL_GLX && \
                 !BR2_PACKAGE_MESA3D_OPENGL_EGL && \
                 !BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
+       select BR2_PACKAGE_MESA3D_DRI3 if \
+               (BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)
         select BR2_PACKAGE_XLIB_LIBXSHMFENCE if \
                 (BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)

But it looks good for me anyway. I've tried by using 
raspberrypi_64_defconfig and only enabled mesa3d with Gallium drivers 
for V3D and VC4.

According to the build log, it has been compiled with DRI3 support.

Regards,
Michael

Am 12/16/21 um 7:33 PM schrieb Arnout Vandecappelle:
> 
> 
> On 16/12/2021 19:12, Bernd Kuhls wrote:
>> Am Thu, 16 Dec 2021 18:28:56 +0100 schrieb Arnout Vandecappelle:
>>
>>>    Bernd, can you comment?
>>
>> Hi Arnout,
>>
>> no, because I do not use buildroot on rbpi hardware.
>>
>> But the topic was already discussed this summer, with no solution afaics:
>> https://patchwork.ozlabs.org/project/buildroot/list/?
>> series=248555&submitter=&state=*&q=&archive=&delegate=
> 
>   Good find, thanks!
> 
>   Michael, can you try that patch [1] and see if it works for you?
> 
>   Peter, I think I'm just going to apply []] except that I'll make 
> BR2_PACKAGE_MESA3D_DRI3 a blind option (i.e. not user visible, only 
> selected automatically by the drivers, much like BR2_PACKAGE_MESA3D_DRI).
> 
>   My other major comment about that patch was that I suspected that it 
> would need some 'select' statements, but I guess the autobuilders will 
> inform us of that, so we can go ahead and merge it.
> 
>   Does that sound OK to you?
> 
>   Regards,
>   Arnout
> 
> 
> [1] 
> https://patchwork.ozlabs.org/project/buildroot/patch/20210612223011.26118-1-ps.report@gmx.net/ 
> 
> 
> 
>>
>> Regards, Bernd
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot@buildroot.org
>> https://lists.buildroot.org/mailman/listinfo/buildroot
>>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [Bug 14451] nodejs won't build on Fedora 35
  2021-12-13 10:00 [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35 bugzilla
  2021-12-13 16:27 ` [Buildroot] [Bug 14451] " bugzilla
  2021-12-14 19:03 ` bugzilla
@ 2021-12-22 14:10 ` bugzilla
  2022-01-09 16:28 ` bugzilla
  3 siblings, 0 replies; 12+ messages in thread
From: bugzilla @ 2021-12-22 14:10 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=14451

--- Comment #3 from Fabrice Fontaine <fontaine.fabrice@gmail.com> ---
The following patch should fix this issue:
https://patchwork.ozlabs.org/project/buildroot/patch/20211222140737.1179968-1-fontaine.fabrice@gmail.com/

Moreover, python 3.10 support has been added to nodejs 14.18.2:
https://github.com/nodejs/node/releases/tag/v14.18.2

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [Bug 14451] nodejs won't build on Fedora 35
  2021-12-13 10:00 [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35 bugzilla
                   ` (2 preceding siblings ...)
  2021-12-22 14:10 ` [Buildroot] [Bug 14451] nodejs won't build on Fedora 35 bugzilla
@ 2022-01-09 16:28 ` bugzilla
  3 siblings, 0 replies; 12+ messages in thread
From: bugzilla @ 2022-01-09 16:28 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=14451

Peter Korsgaard <jacmet@uclibc.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Peter Korsgaard <jacmet@uclibc.org> ---
Fixed by
https://git.buildroot.org/buildroot/commit/?id=5ad7eb6c61d281912a8c692f0b69d46726394b10,
thanks

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-01-09 16:28 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-13 10:00 [Buildroot] [Bug 14451] New: nodejs won't build on Fedora 35 bugzilla
2021-12-13 16:27 ` [Buildroot] [Bug 14451] " bugzilla
2021-12-14 19:03 ` bugzilla
2021-12-14 19:06   ` [Buildroot] [PATCH 1/1] package/mesa3d: don't disable DRI3 for some Gallium drivers Michael Taubert
2021-12-16 17:28     ` Arnout Vandecappelle
2021-12-16 18:26       ` Michael Taubert
     [not found]     ` <aafcded5-c0f4-4745-a226-da57d0e7a805__41403.4441857197$1639675757$gmane$org@mind.be>
2021-12-16 18:12       ` Bernd Kuhls
2021-12-16 18:33         ` Arnout Vandecappelle
2021-12-16 21:45           ` Peter Seiderer
2021-12-17 10:15           ` Michael Taubert
2021-12-22 14:10 ` [Buildroot] [Bug 14451] nodejs won't build on Fedora 35 bugzilla
2022-01-09 16:28 ` bugzilla

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.