* [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs
@ 2020-07-27 9:49 James Hilliard
2020-07-27 9:53 ` Yann E. MORIN
0 siblings, 1 reply; 4+ messages in thread
From: James Hilliard @ 2020-07-27 9:49 UTC (permalink / raw)
To: buildroot
The nodejs configure.py file orders zlib headers before the bundled ICU
headers. The zlib headers happen to be located in the system include
directory, next to some system ICU headers (not bundled). If these are
built before nodejs is, nodejs will get confused and try to use the
system ICU headers instead of the bundled ones.
Fix this by always using host-icu.
Set CXXFLAGS.target to -DU_DISABLE_RENAMING=1 when building with
system-icu since host-icu is built with --disable-renaming.
Fixes:
- http://autobuild.buildroot.net/results/1ef947553ec762dba6a6202b1cfc84ceed75dbb2/
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/nodejs/nodejs.mk | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
index 3f35ac7c33..53c9511b9b 100644
--- a/package/nodejs/nodejs.mk
+++ b/package/nodejs/nodejs.mk
@@ -10,7 +10,7 @@ NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
NODEJS_DEPENDENCIES = host-python host-nodejs c-ares \
libuv zlib nghttp2 \
$(call qstrip,$(BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL_DEPS))
-HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib
+HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib host-icu
NODEJS_INSTALL_STAGING = YES
NODEJS_LICENSE = MIT (core code); MIT, Apache and BSD family licenses (Bundled components)
NODEJS_LICENSE_FILES = LICENSE
@@ -26,6 +26,20 @@ NODEJS_CONF_OPTS = \
--cross-compiling \
--dest-os=linux
+HOST_NODEJS_CONF_OPTS = \
+ --prefix=$(HOST_DIR) \
+ --without-snapshot \
+ --without-dtrace \
+ --without-etw \
+ --shared-openssl \
+ --shared-openssl-includes=$(HOST_DIR)/include/openssl \
+ --shared-openssl-libpath=$(HOST_DIR)/lib \
+ --shared-zlib \
+ --no-cross-compiling \
+ --with-intl=system-icu
+
+HOST_NODEJS_CXXFLAGS = -DU_DISABLE_RENAMING=1
+
ifeq ($(BR2_PACKAGE_OPENSSL),y)
NODEJS_DEPENDENCIES += openssl
NODEJS_CONF_OPTS += --shared-openssl
@@ -57,16 +71,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
PATH=$(@D)/bin:$(BR_PATH) \
PYTHON=$(HOST_DIR)/bin/python2 \
$(HOST_DIR)/bin/python2 ./configure \
- --prefix=$(HOST_DIR) \
- --without-snapshot \
- --without-dtrace \
- --without-etw \
- --shared-openssl \
- --shared-openssl-includes=$(HOST_DIR)/include/openssl \
- --shared-openssl-libpath=$(HOST_DIR)/lib \
- --shared-zlib \
- --no-cross-compiling \
- --with-intl=small-icu \
+ $(HOST_NODEJS_CONF_OPTS) \
)
endef
@@ -81,6 +86,7 @@ define HOST_NODEJS_BUILD_CMDS
$(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
$(MAKE) -C $(@D) \
$(HOST_CONFIGURE_OPTS) \
+ CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
LDFLAGS.host="$(HOST_LDFLAGS)" \
NO_LOAD=cctest.target.mk \
PATH=$(@D)/bin:$(BR_PATH)
@@ -90,6 +96,7 @@ define HOST_NODEJS_INSTALL_CMDS
$(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
$(MAKE) -C $(@D) install \
$(HOST_CONFIGURE_OPTS) \
+ CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
LDFLAGS.host="$(HOST_LDFLAGS)" \
NO_LOAD=cctest.target.mk \
PATH=$(@D)/bin:$(BR_PATH)
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs
2020-07-27 9:49 [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs James Hilliard
@ 2020-07-27 9:53 ` Yann E. MORIN
2020-07-27 10:28 ` James Hilliard
0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2020-07-27 9:53 UTC (permalink / raw)
To: buildroot
James, All,
On 2020-07-27 03:49 -0600, James Hilliard spake thusly:
> The nodejs configure.py file orders zlib headers before the bundled ICU
> headers. The zlib headers happen to be located in the system include
> directory, next to some system ICU headers (not bundled). If these are
> built before nodejs is, nodejs will get confused and try to use the
> system ICU headers instead of the bundled ones.
>
> Fix this by always using host-icu.
>
> Set CXXFLAGS.target to -DU_DISABLE_RENAMING=1 when building with
> system-icu since host-icu is built with --disable-renaming.
>
> Fixes:
> - http://autobuild.buildroot.net/results/1ef947553ec762dba6a6202b1cfc84ceed75dbb2/
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> package/nodejs/nodejs.mk | 29 ++++++++++++++++++-----------
> 1 file changed, 18 insertions(+), 11 deletions(-)
>
> diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
> index 3f35ac7c33..53c9511b9b 100644
> --- a/package/nodejs/nodejs.mk
> +++ b/package/nodejs/nodejs.mk
> @@ -10,7 +10,7 @@ NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
> NODEJS_DEPENDENCIES = host-python host-nodejs c-ares \
> libuv zlib nghttp2 \
> $(call qstrip,$(BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL_DEPS))
> -HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib
> +HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib host-icu
> NODEJS_INSTALL_STAGING = YES
> NODEJS_LICENSE = MIT (core code); MIT, Apache and BSD family licenses (Bundled components)
> NODEJS_LICENSE_FILES = LICENSE
> @@ -26,6 +26,20 @@ NODEJS_CONF_OPTS = \
> --cross-compiling \
> --dest-os=linux
>
> +HOST_NODEJS_CONF_OPTS = \
> + --prefix=$(HOST_DIR) \
> + --without-snapshot \
> + --without-dtrace \
> + --without-etw \
> + --shared-openssl \
> + --shared-openssl-includes=$(HOST_DIR)/include/openssl \
> + --shared-openssl-libpath=$(HOST_DIR)/lib \
> + --shared-zlib \
> + --no-cross-compiling \
> + --with-intl=system-icu
Why did you need to introduce HOST_NODEJS_CONF_OPTS? Can't we just
change --with-intl where it already is?
> +HOST_NODEJS_CXXFLAGS = -DU_DISABLE_RENAMING=1
You forgot to propagate HOST_CXXFLAGS.
> ifeq ($(BR2_PACKAGE_OPENSSL),y)
> NODEJS_DEPENDENCIES += openssl
> NODEJS_CONF_OPTS += --shared-openssl
> @@ -57,16 +71,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
> PATH=$(@D)/bin:$(BR_PATH) \
> PYTHON=$(HOST_DIR)/bin/python2 \
> $(HOST_DIR)/bin/python2 ./configure \
> - --prefix=$(HOST_DIR) \
> - --without-snapshot \
> - --without-dtrace \
> - --without-etw \
> - --shared-openssl \
> - --shared-openssl-includes=$(HOST_DIR)/include/openssl \
> - --shared-openssl-libpath=$(HOST_DIR)/lib \
> - --shared-zlib \
> - --no-cross-compiling \
> - --with-intl=small-icu \
> + $(HOST_NODEJS_CONF_OPTS) \
> )
> endef
>
> @@ -81,6 +86,7 @@ define HOST_NODEJS_BUILD_CMDS
> $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> $(MAKE) -C $(@D) \
> $(HOST_CONFIGURE_OPTS) \
> + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> LDFLAGS.host="$(HOST_LDFLAGS)" \
Why do we use CXXFLAGS.target but LDFLAGS.host ?
Regards,
Yann E. MORIN.
> NO_LOAD=cctest.target.mk \
> PATH=$(@D)/bin:$(BR_PATH)
> @@ -90,6 +96,7 @@ define HOST_NODEJS_INSTALL_CMDS
> $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> $(MAKE) -C $(@D) install \
> $(HOST_CONFIGURE_OPTS) \
> + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> LDFLAGS.host="$(HOST_LDFLAGS)" \
> NO_LOAD=cctest.target.mk \
> PATH=$(@D)/bin:$(BR_PATH)
> --
> 2.25.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs
2020-07-27 9:53 ` Yann E. MORIN
@ 2020-07-27 10:28 ` James Hilliard
2020-07-27 10:47 ` Yann E. MORIN
0 siblings, 1 reply; 4+ messages in thread
From: James Hilliard @ 2020-07-27 10:28 UTC (permalink / raw)
To: buildroot
On Mon, Jul 27, 2020 at 3:54 AM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
>
> James, All,
>
> On 2020-07-27 03:49 -0600, James Hilliard spake thusly:
> > The nodejs configure.py file orders zlib headers before the bundled ICU
> > headers. The zlib headers happen to be located in the system include
> > directory, next to some system ICU headers (not bundled). If these are
> > built before nodejs is, nodejs will get confused and try to use the
> > system ICU headers instead of the bundled ones.
> >
> > Fix this by always using host-icu.
> >
> > Set CXXFLAGS.target to -DU_DISABLE_RENAMING=1 when building with
> > system-icu since host-icu is built with --disable-renaming.
> >
> > Fixes:
> > - http://autobuild.buildroot.net/results/1ef947553ec762dba6a6202b1cfc84ceed75dbb2/
> >
> > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> > ---
> > package/nodejs/nodejs.mk | 29 ++++++++++++++++++-----------
> > 1 file changed, 18 insertions(+), 11 deletions(-)
> >
> > diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
> > index 3f35ac7c33..53c9511b9b 100644
> > --- a/package/nodejs/nodejs.mk
> > +++ b/package/nodejs/nodejs.mk
> > @@ -10,7 +10,7 @@ NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
> > NODEJS_DEPENDENCIES = host-python host-nodejs c-ares \
> > libuv zlib nghttp2 \
> > $(call qstrip,$(BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL_DEPS))
> > -HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib
> > +HOST_NODEJS_DEPENDENCIES = host-libopenssl host-python host-zlib host-icu
> > NODEJS_INSTALL_STAGING = YES
> > NODEJS_LICENSE = MIT (core code); MIT, Apache and BSD family licenses (Bundled components)
> > NODEJS_LICENSE_FILES = LICENSE
> > @@ -26,6 +26,20 @@ NODEJS_CONF_OPTS = \
> > --cross-compiling \
> > --dest-os=linux
> >
> > +HOST_NODEJS_CONF_OPTS = \
> > + --prefix=$(HOST_DIR) \
> > + --without-snapshot \
> > + --without-dtrace \
> > + --without-etw \
> > + --shared-openssl \
> > + --shared-openssl-includes=$(HOST_DIR)/include/openssl \
> > + --shared-openssl-libpath=$(HOST_DIR)/lib \
> > + --shared-zlib \
> > + --no-cross-compiling \
> > + --with-intl=system-icu
>
> Why did you need to introduce HOST_NODEJS_CONF_OPTS? Can't we just
> change --with-intl where it already is?
I thought it was cleaner this way but can change it back.
>
> > +HOST_NODEJS_CXXFLAGS = -DU_DISABLE_RENAMING=1
>
> You forgot to propagate HOST_CXXFLAGS.
Are you sure that's needed with the way the nodejs build system works?
>
> > ifeq ($(BR2_PACKAGE_OPENSSL),y)
> > NODEJS_DEPENDENCIES += openssl
> > NODEJS_CONF_OPTS += --shared-openssl
> > @@ -57,16 +71,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
> > PATH=$(@D)/bin:$(BR_PATH) \
> > PYTHON=$(HOST_DIR)/bin/python2 \
> > $(HOST_DIR)/bin/python2 ./configure \
> > - --prefix=$(HOST_DIR) \
> > - --without-snapshot \
> > - --without-dtrace \
> > - --without-etw \
> > - --shared-openssl \
> > - --shared-openssl-includes=$(HOST_DIR)/include/openssl \
> > - --shared-openssl-libpath=$(HOST_DIR)/lib \
> > - --shared-zlib \
> > - --no-cross-compiling \
> > - --with-intl=small-icu \
> > + $(HOST_NODEJS_CONF_OPTS) \
> > )
> > endef
> >
> > @@ -81,6 +86,7 @@ define HOST_NODEJS_BUILD_CMDS
> > $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> > $(MAKE) -C $(@D) \
> > $(HOST_CONFIGURE_OPTS) \
> > + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> > LDFLAGS.host="$(HOST_LDFLAGS)" \
>
> Why do we use CXXFLAGS.target but LDFLAGS.host ?
Not sure.
>
> Regards,
> Yann E. MORIN.
>
> > NO_LOAD=cctest.target.mk \
> > PATH=$(@D)/bin:$(BR_PATH)
> > @@ -90,6 +96,7 @@ define HOST_NODEJS_INSTALL_CMDS
> > $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> > $(MAKE) -C $(@D) install \
> > $(HOST_CONFIGURE_OPTS) \
> > + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> > LDFLAGS.host="$(HOST_LDFLAGS)" \
> > NO_LOAD=cctest.target.mk \
> > PATH=$(@D)/bin:$(BR_PATH)
> > --
> > 2.25.1
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
>
> --
> .-----------------.--------------------.------------------.--------------------.
> | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> | +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> '------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs
2020-07-27 10:28 ` James Hilliard
@ 2020-07-27 10:47 ` Yann E. MORIN
0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2020-07-27 10:47 UTC (permalink / raw)
To: buildroot
James, All,
On 2020-07-27 04:28 -0600, James Hilliard spake thusly:
> On Mon, Jul 27, 2020 at 3:54 AM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> > On 2020-07-27 03:49 -0600, James Hilliard spake thusly:
> > > The nodejs configure.py file orders zlib headers before the bundled ICU
> > > headers. The zlib headers happen to be located in the system include
> > > directory, next to some system ICU headers (not bundled). If these are
> > > built before nodejs is, nodejs will get confused and try to use the
> > > system ICU headers instead of the bundled ones.
> > >
> > > Fix this by always using host-icu.
[--SNIP--]
> > > +HOST_NODEJS_CONF_OPTS = \
> > Why did you need to introduce HOST_NODEJS_CONF_OPTS? Can't we just
> > change --with-intl where it already is?
> I thought it was cleaner this way but can change it back.
No need to respin just for that.
> > > +HOST_NODEJS_CXXFLAGS = -DU_DISABLE_RENAMING=1
> > You forgot to propagate HOST_CXXFLAGS.
> Are you sure that's needed with the way the nodejs build system works?
Well, CXXFLAGS are set in $(HOST_CONFIGURE_OPTS):
$ make printvars VARS=HOST_CONFIGURE_OPTS RAW_VARS=YES
[...] CXXFLAGS="$(HOST_CXXFLAGS)" [...]
So, were they used previously? If not, then the commit log should say
so.
However, I'm afraid they were. They at least contain the CFLAGS, which
contain the optimisation level (-O2), but mnost importantly, contain the
CPPFGLAGS, so contains the correct include path to $(HOST_DIR)/include
And it seems the default value for CXXFLAGS.target does use CXXFLAGS:
tools/gyp/pylib/gyp/generator/make.py:CXXFLAGS.target ?= $(CPPFLAGS) $(CXXFLAGS)
So maybe we need something like:
HOST_NODEJS_CXXFLAGS = $(HOST_CXXFLAGS) -DU_DISABLE_RENAMING=1
and in the configure and build comands:
...
$(HOST_CONFIGURE_OPTS) \
CXXFLAGS="$(HOST_NODEJS_CXXFLAGS)" \
...
Regards,
Yann E. MORIN.
> > > ifeq ($(BR2_PACKAGE_OPENSSL),y)
> > > NODEJS_DEPENDENCIES += openssl
> > > NODEJS_CONF_OPTS += --shared-openssl
> > > @@ -57,16 +71,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
> > > PATH=$(@D)/bin:$(BR_PATH) \
> > > PYTHON=$(HOST_DIR)/bin/python2 \
> > > $(HOST_DIR)/bin/python2 ./configure \
> > > - --prefix=$(HOST_DIR) \
> > > - --without-snapshot \
> > > - --without-dtrace \
> > > - --without-etw \
> > > - --shared-openssl \
> > > - --shared-openssl-includes=$(HOST_DIR)/include/openssl \
> > > - --shared-openssl-libpath=$(HOST_DIR)/lib \
> > > - --shared-zlib \
> > > - --no-cross-compiling \
> > > - --with-intl=small-icu \
> > > + $(HOST_NODEJS_CONF_OPTS) \
> > > )
> > > endef
> > >
> > > @@ -81,6 +86,7 @@ define HOST_NODEJS_BUILD_CMDS
> > > $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> > > $(MAKE) -C $(@D) \
> > > $(HOST_CONFIGURE_OPTS) \
> > > + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> > > LDFLAGS.host="$(HOST_LDFLAGS)" \
> >
> > Why do we use CXXFLAGS.target but LDFLAGS.host ?
> Not sure.
> >
> > Regards,
> > Yann E. MORIN.
> >
> > > NO_LOAD=cctest.target.mk \
> > > PATH=$(@D)/bin:$(BR_PATH)
> > > @@ -90,6 +96,7 @@ define HOST_NODEJS_INSTALL_CMDS
> > > $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \
> > > $(MAKE) -C $(@D) install \
> > > $(HOST_CONFIGURE_OPTS) \
> > > + CXXFLAGS.target="$(HOST_NODEJS_CXXFLAGS)" \
> > > LDFLAGS.host="$(HOST_LDFLAGS)" \
> > > NO_LOAD=cctest.target.mk \
> > > PATH=$(@D)/bin:$(BR_PATH)
> > > --
> > > 2.25.1
> > >
> > > _______________________________________________
> > > buildroot mailing list
> > > buildroot at busybox.net
> > > http://lists.busybox.net/mailman/listinfo/buildroot
> >
> > --
> > .-----------------.--------------------.------------------.--------------------.
> > | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> > | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> > | +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
> > | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> > '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-07-27 10:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-27 9:49 [Buildroot] [PATCH v6 1/1] package/nodejs: use system-icu for host-nodejs James Hilliard
2020-07-27 9:53 ` Yann E. MORIN
2020-07-27 10:28 ` James Hilliard
2020-07-27 10:47 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox