* [Buildroot] [PATCH v3 0/2] package/nodejs: bump version to 14.17.6
@ 2021-10-08 20:43 Adam Duskett
2021-10-08 20:43 ` [Buildroot] [PATCH v3 1/2] package/python3: Add bzip2 option to host Adam Duskett
2021-10-08 20:43 ` [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 Adam Duskett
0 siblings, 2 replies; 5+ messages in thread
From: Adam Duskett @ 2021-10-08 20:43 UTC (permalink / raw)
To: buildroot
Cc: Daniel Price, Asaf Kahlon, Thomas Petazzoni, Martin Bark,
Adam Duskett
Changes include:
- Remove the dependency on Python2, as nodejs 14 supports Python 3.
- Remove --without-snapshot as it's no longer a supported config option.
- Remove /openssl to the shared-openssl-includes config option, as the build
system automatically appends /openssl to the includes path.
- Add a qemu wrapper. V8's JIT infrastructure requires binaries such as
mksnapshot and mkpeephole to be run in the host during the build.
However, these binaries must have the same bit-width as the target
(e.g. a x86_64 host targeting ARMv6 needs to produce a 32-bit binary).
To work around this issue, cross-compile the binaries for the target and
run them on the host with QEMU, much like gobject-introspection.
Adam Duskett (2):
Changes v2 -> v3:
- Drop the default y options from python3/Config.in.host (Yann)
package/python3: Add bzip2 option to host
package/nodejs: bump version to 14.17.6
.../0001-add-qemu-wrapper-support.patch | 76 ++++++++++++++++++
package/nodejs/Config.in | 15 +++-
package/nodejs/nodejs.hash | 6 +-
package/nodejs/nodejs.mk | 78 +++++++++++--------
package/nodejs/v8-qemu-wrapper.in | 12 +++
package/python3/Config.in.host | 6 ++
package/python3/python3.mk | 6 ++
7 files changed, 158 insertions(+), 41 deletions(-)
create mode 100644 package/nodejs/0001-add-qemu-wrapper-support.patch
create mode 100644 package/nodejs/v8-qemu-wrapper.in
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread* [Buildroot] [PATCH v3 1/2] package/python3: Add bzip2 option to host 2021-10-08 20:43 [Buildroot] [PATCH v3 0/2] package/nodejs: bump version to 14.17.6 Adam Duskett @ 2021-10-08 20:43 ` Adam Duskett 2021-10-08 20:43 ` [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 Adam Duskett 1 sibling, 0 replies; 5+ messages in thread From: Adam Duskett @ 2021-10-08 20:43 UTC (permalink / raw) To: buildroot Cc: Daniel Price, Asaf Kahlon, Thomas Petazzoni, Martin Bark, Adam Duskett The bzip2 module is needed to build the host variant of NodeJS 14. Signed-off-by: Adam Duskett <aduskett@gmail.com> --- package/python3/Config.in.host | 6 ++++++ package/python3/python3.mk | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/package/python3/Config.in.host b/package/python3/Config.in.host index 70b5dacdde..65a8df0754 100644 --- a/package/python3/Config.in.host +++ b/package/python3/Config.in.host @@ -7,6 +7,12 @@ config BR2_PACKAGE_HOST_PYTHON3 if BR2_PACKAGE_HOST_PYTHON3 +config BR2_PACKAGE_HOST_PYTHON3_BZIP2 + bool "bzip2" + select BR2_PACKAGE_HOST_BZIP2 + help + bz2 module for host Python3. + config BR2_PACKAGE_HOST_PYTHON3_SSL bool "ssl" select BR2_PACKAGE_HOST_OPENSSL diff --git a/package/python3/python3.mk b/package/python3/python3.mk index 3e88bc0ff4..779f6dcb6c 100644 --- a/package/python3/python3.mk +++ b/package/python3/python3.mk @@ -43,6 +43,12 @@ PYTHON3_DEPENDENCIES = host-python3 libffi HOST_PYTHON3_DEPENDENCIES = host-autoconf-archive host-expat host-zlib host-libffi +ifeq ($(BR2_PACKAGE_HOST_PYTHON3_BZIP2),y) +HOST_PYTHON3_DEPENDENCIES += host-bzip2 +else +HOST_PYTHON3_CONF_OPTS += --disable-bzip2 +endif + ifeq ($(BR2_PACKAGE_HOST_PYTHON3_SSL),y) HOST_PYTHON3_DEPENDENCIES += host-openssl else -- 2.30.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 2021-10-08 20:43 [Buildroot] [PATCH v3 0/2] package/nodejs: bump version to 14.17.6 Adam Duskett 2021-10-08 20:43 ` [Buildroot] [PATCH v3 1/2] package/python3: Add bzip2 option to host Adam Duskett @ 2021-10-08 20:43 ` Adam Duskett 2021-10-08 21:16 ` Thomas Petazzoni 1 sibling, 1 reply; 5+ messages in thread From: Adam Duskett @ 2021-10-08 20:43 UTC (permalink / raw) To: buildroot Cc: Daniel Price, Asaf Kahlon, Thomas Petazzoni, Martin Bark, Adam Duskett Changes include: - Remove the dependency on Python2, as nodejs 14 supports Python 3. - Remove --without-snapshot as it's no longer a supported config option. - Remove /openssl to the shared-openssl-includes config option, as the build system automatically appends /openssl to the includes path. - Add a qemu wrapper. V8's JIT infrastructure requires binaries such as mksnapshot and mkpeephole to be run in the host during the build. However, these binaries must have the same bit-width as the target (e.g. a x86_64 host targeting ARMv6 needs to produce a 32-bit binary). To work around this issue, cross-compile the binaries for the target and run them on the host with QEMU, much like gobject-introspection. Signed-off-by: Adam Duskett <aduskett@gmail.com> --- .../0001-add-qemu-wrapper-support.patch | 76 ++++++++++++++++++ package/nodejs/Config.in | 15 +++- package/nodejs/nodejs.hash | 6 +- package/nodejs/nodejs.mk | 78 +++++++++++-------- package/nodejs/v8-qemu-wrapper.in | 12 +++ 5 files changed, 146 insertions(+), 41 deletions(-) create mode 100644 package/nodejs/0001-add-qemu-wrapper-support.patch create mode 100644 package/nodejs/v8-qemu-wrapper.in diff --git a/package/nodejs/0001-add-qemu-wrapper-support.patch b/package/nodejs/0001-add-qemu-wrapper-support.patch new file mode 100644 index 0000000000..9b81e3adab --- /dev/null +++ b/package/nodejs/0001-add-qemu-wrapper-support.patch @@ -0,0 +1,76 @@ +From fa09fa3ad6a21ae0b35fb860f76d1762e5f29972 Mon Sep 17 00:00:00 2001 +From: Adam Duskett <aduskett@gmail.com> +Date: Mon, 27 Sep 2021 12:55:09 -0700 +Subject: [PATCH] 1 + +Signed-off-by: Adam Duskett <aduskett@gmail.com> +--- + node.gyp | 4 ++-- + tools/v8_gypfiles/v8.gyp | 8 ++++---- + 2 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/node.gyp b/node.gyp +index 8ba0dfeb..c77f6f7d 100644 +--- a/node.gyp ++++ b/node.gyp +@@ -491,7 +491,7 @@ + 'action_name': 'run_mkcodecache', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(mkcodecache_exec)', ++ @MAYBE_WRAPPER@ '<(mkcodecache_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_code_cache.cc', +@@ -516,7 +516,7 @@ + 'action_name': 'node_mksnapshot', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(node_mksnapshot_exec)', ++ @MAYBE_WRAPPER@ '<(node_mksnapshot_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc', +diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp +index 48ec392b..f9bb0fbe 100644 +--- a/tools/v8_gypfiles/v8.gyp ++++ b/tools/v8_gypfiles/v8.gyp +@@ -220,7 +220,7 @@ + { + 'action_name': 'run_torque_action', + 'inputs': [ # Order matters. +- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)torque<(EXECUTABLE_SUFFIX)', ++ @MAYBE_WRAPPER@ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)torque<(EXECUTABLE_SUFFIX)', + '<@(torque_files)', + ], + 'outputs': [ +@@ -351,7 +351,7 @@ + { + 'action_name': 'generate_bytecode_builtins_list_action', + 'inputs': [ +- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)bytecode_builtins_list_generator<(EXECUTABLE_SUFFIX)', ++ @MAYBE_WRAPPER@ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)bytecode_builtins_list_generator<(EXECUTABLE_SUFFIX)', + ], + 'outputs': [ + '<(generate_bytecode_builtins_list_output)', +@@ -533,7 +533,7 @@ + ], + }, + 'inputs': [ +- '<(mksnapshot_exec)', ++ @MAYBE_WRAPPER@ '<(mksnapshot_exec)', + ], + 'outputs': [ + '<(INTERMEDIATE_DIR)/snapshot.cc', +@@ -1448,7 +1448,7 @@ + { + 'action_name': 'run_gen-regexp-special-case_action', + 'inputs': [ +- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen-regexp-special-case<(EXECUTABLE_SUFFIX)', ++ @MAYBE_WRAPPER@ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen-regexp-special-case<(EXECUTABLE_SUFFIX)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/src/regexp/special-case.cc', +-- +2.31.1 + diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index ba3fde887d..7c48f4b6fe 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -4,28 +4,35 @@ config BR2_PACKAGE_NODEJS_ARCH_SUPPORTS default y if BR2_arm && !BR2_ARM_CPU_ARMV4 && !BR2_ARM_CPU_ARMV5 && BR2_ARM_CPU_HAS_VFPV2 default y if BR2_mipsel && !BR2_MIPS_SOFT_FLOAT default y if BR2_aarch64 || BR2_i386 || BR2_x86_64 + default y if BR2_s390x # libuv depends on BR2_TOOLCHAIN_HAS_SYNC_4 + depends on BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET -comment "nodejs needs a toolchain w/ C++, dynamic library, NPTL, gcc >= 4.9, wchar" +comment "nodejs needs a toolchain w/ C++, dynamic library, NPTL, gcc >= 7, wchar" depends on BR2_USE_MMU depends on BR2_PACKAGE_NODEJS_ARCH_SUPPORTS depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \ - !BR2_HOST_GCC_AT_LEAST_4_9 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR + !BR2_HOST_GCC_AT_LEAST_7 || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_USE_WCHAR config BR2_PACKAGE_NODEJS bool "nodejs" depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv depends on BR2_INSTALL_LIBSTDCPP depends on BR2_PACKAGE_NODEJS_ARCH_SUPPORTS - depends on BR2_HOST_GCC_AT_LEAST_4_9 - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 + depends on BR2_HOST_GCC_AT_LEAST_7 + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 depends on BR2_USE_WCHAR # uses fork() depends on BR2_USE_MMU # uses dlopen(). On ARMv5, we could technically support static # linking, but that's too much of a corner case to support it. depends on !BR2_STATIC_LIBS + select BR2_PACKAGE_HOST_PYTHON3 + select BR2_PACKAGE_HOST_PYTHON3_BZIP2 + select BR2_PACKAGE_HOST_PYTHON3_SSL + select BR2_PACKAGE_HOST_QEMU + select BR2_PACKAGE_HOST_QEMU_LINUX_USER_MODE select BR2_PACKAGE_C_ARES select BR2_PACKAGE_LIBUV select BR2_PACKAGE_ZLIB diff --git a/package/nodejs/nodejs.hash b/package/nodejs/nodejs.hash index 8d39ef489d..098049c021 100644 --- a/package/nodejs/nodejs.hash +++ b/package/nodejs/nodejs.hash @@ -1,5 +1,5 @@ -# From https://nodejs.org/dist/v12.22.6/SHASUMS256.txt -sha256 c2022f16b8f689620c3472c2b5261fdabbd0ab976bf9ac3b7db6747a2e9b0f7a node-v12.22.6.tar.xz +# From https://nodejs.org/dist/v14.17.6/SHASUMS256.txt +sha256 f458cd0b1cb1540611cb08709d833c0c59c74da79310ae1984cc8bad1404ad5e node-v14.17.6.tar.xz # Hash for license file -sha256 221417a7ca275112a5ac54639b36ee3c5184e74631ea1e1b01b701293b655190 LICENSE +sha256 4c3016fb267bc473af18b305068f7f2d206ccd5ab98297ec593e1c32d73ad4fc LICENSE diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk index 38e8936986..32f4947c0d 100644 --- a/package/nodejs/nodejs.mk +++ b/package/nodejs/nodejs.mk @@ -4,13 +4,13 @@ # ################################################################################ -NODEJS_VERSION = 12.22.6 +NODEJS_VERSION = 14.17.6 NODEJS_SOURCE = node-v$(NODEJS_VERSION).tar.xz NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION) -NODEJS_DEPENDENCIES = host-python host-nodejs c-ares \ +NODEJS_DEPENDENCIES = host-qemu host-python3 host-nodejs c-ares \ libuv zlib nghttp2 \ $(call qstrip,$(BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL_DEPS)) -HOST_NODEJS_DEPENDENCIES = host-icu host-libopenssl host-python host-zlib +HOST_NODEJS_DEPENDENCIES = host-icu host-libopenssl host-python3 host-zlib NODEJS_INSTALL_STAGING = YES NODEJS_LICENSE = MIT (core code); MIT, Apache and BSD family licenses (Bundled components) NODEJS_LICENSE_FILES = LICENSE @@ -18,7 +18,6 @@ NODEJS_CPE_ID_VENDOR = nodejs NODEJS_CPE_ID_PRODUCT = node.js NODEJS_CONF_OPTS = \ - --without-snapshot \ --shared-zlib \ --shared-cares \ --shared-libuv \ @@ -46,25 +45,17 @@ ifneq ($(BR2_PACKAGE_NODEJS_NPM),y) NODEJS_CONF_OPTS += --without-npm endif -# nodejs build system is based on python, but only support python-2.6 or -# python-2.7. So, we have to enforce PYTHON interpreter to be python2. define HOST_NODEJS_CONFIGURE_CMDS - # The build system directly calls python. Work around this by forcing python2 - # into PATH. See https://github.com/nodejs/node/issues/2735 - mkdir -p $(@D)/bin - ln -sf $(HOST_DIR)/bin/python2 $(@D)/bin/python - (cd $(@D); \ $(HOST_CONFIGURE_OPTS) \ PATH=$(@D)/bin:$(BR_PATH) \ - PYTHON=$(HOST_DIR)/bin/python2 \ - $(HOST_DIR)/bin/python2 ./configure \ + PYTHON=$(HOST_DIR)/bin/python3 \ + $(HOST_DIR)/bin/python3 ./configure \ --prefix=$(HOST_DIR) \ - --without-snapshot \ --without-dtrace \ --without-etw \ --shared-openssl \ - --shared-openssl-includes=$(HOST_DIR)/include/openssl \ + --shared-openssl-includes=$(HOST_DIR)/include \ --shared-openssl-libpath=$(HOST_DIR)/lib \ --shared-zlib \ --no-cross-compiling \ @@ -82,7 +73,7 @@ NODEJS_HOST_TOOLS = $(NODEJS_HOST_TOOLS_V8) $(NODEJS_HOST_TOOLS_NODE) HOST_NODEJS_CXXFLAGS = $(HOST_CXXFLAGS) -DU_DISABLE_RENAMING=1 define HOST_NODEJS_BUILD_CMDS - $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \ + $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python3 \ $(MAKE) -C $(@D) \ $(HOST_CONFIGURE_OPTS) \ CXXFLAGS="$(HOST_NODEJS_CXXFLAGS)" \ @@ -92,7 +83,7 @@ define HOST_NODEJS_BUILD_CMDS endef define HOST_NODEJS_INSTALL_CMDS - $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \ + $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python3 \ $(MAKE) -C $(@D) install \ $(HOST_CONFIGURE_OPTS) \ CXXFLAGS="$(HOST_NODEJS_CXXFLAGS)" \ @@ -152,17 +143,45 @@ ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y) NODEJS_LDFLAGS += -latomic endif -define NODEJS_CONFIGURE_CMDS - mkdir -p $(@D)/bin - ln -sf $(HOST_DIR)/bin/python2 $(@D)/bin/python +# V8's JIT infrastructure requires binaries such as mksnapshot and +# mkpeephole to be run in the host during the build. However, these +# binaries must have the same bit-width as the target (e.g. a x86_64 +# host targeting ARMv6 needs to produce a 32-bit binary). To work around this +# issue, cross-compile the binaries for the target and run them on the +# host with QEMU, much like gobject-introspection. +define NODEJS_INSTALL_V8_QEMU_WRAPPER + $(INSTALL) -D -m 755 $(NODEJS_PKGDIR)/v8-qemu-wrapper.in \ + $(@D)/out/Release/v8-qemu-wrapper + $(SED) "s%@QEMU_USER@%$(QEMU_USER)%g" \ + $(@D)/out/Release/v8-qemu-wrapper + $(SED) "s%@TOOLCHAIN_HEADERS_VERSION@%$(BR2_TOOLCHAIN_HEADERS_AT_LEAST)%g" \ + $(@D)/out/Release/v8-qemu-wrapper + $(SED) "s%@QEMU_USERMODE_ARGS@%$(call qstrip,$(BR2_PACKAGE_HOST_QEMU_USER_MODE_ARGS))%g" \ + $(@D)/out/Release/v8-qemu-wrapper +endef +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_INSTALL_V8_QEMU_WRAPPER +define NODEJS_WRAPPER_FIXUP + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/node.gyp + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/tools/v8_gypfiles/v8.gyp +endef +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_WRAPPER_FIXUP + +# Do not run the qemu-wrapper for the host build. +define HOST_NODEJS_WRAPPER_FIXUP + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/node.gyp + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/tools/v8_gypfiles/v8.gyp +endef +HOST_NODEJS_PRE_CONFIGURE_HOOKS += HOST_NODEJS_WRAPPER_FIXUP + +define NODEJS_CONFIGURE_CMDS (cd $(@D); \ $(TARGET_CONFIGURE_OPTS) \ PATH=$(@D)/bin:$(BR_PATH) \ LDFLAGS="$(NODEJS_LDFLAGS)" \ LD="$(TARGET_CXX)" \ - PYTHON=$(HOST_DIR)/bin/python2 \ - $(HOST_DIR)/bin/python2 ./configure \ + PYTHON=$(HOST_DIR)/bin/python3 \ + $(HOST_DIR)/bin/python3 ./configure \ --prefix=/usr \ --dest-cpu=$(NODEJS_CPU) \ $(if $(NODEJS_ARM_FP),--with-arm-float-abi=$(NODEJS_ARM_FP)) \ @@ -171,19 +190,10 @@ define NODEJS_CONFIGURE_CMDS $(if $(NODEJS_MIPS_FPU_MODE),--with-mips-fpu-mode=$(NODEJS_MIPS_FPU_MODE)) \ $(NODEJS_CONF_OPTS) \ ) - - $(foreach f,$(NODEJS_HOST_TOOLS_V8), \ - $(SED) "s#<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)$(f)<(EXECUTABLE_SUFFIX)#$(HOST_DIR)/bin/$(f)#" \ - $(@D)/tools/v8_gypfiles/v8.gyp - ) - $(foreach f,$(NODEJS_HOST_TOOLS_NODE), \ - $(SED) "s#<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)$(f)<(EXECUTABLE_SUFFIX)#$(HOST_DIR)/bin/$(f)#" \ - -i $(@D)/node.gyp - ) endef define NODEJS_BUILD_CMDS - $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \ + $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python3 \ $(MAKE) -C $(@D) \ $(TARGET_CONFIGURE_OPTS) \ NO_LOAD=cctest.target.mk \ @@ -223,7 +233,7 @@ endef endif define NODEJS_INSTALL_STAGING_CMDS - $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \ + $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python3 \ $(MAKE) -C $(@D) install \ DESTDIR=$(STAGING_DIR) \ $(TARGET_CONFIGURE_OPTS) \ @@ -234,7 +244,7 @@ define NODEJS_INSTALL_STAGING_CMDS endef define NODEJS_INSTALL_TARGET_CMDS - $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python2 \ + $(TARGET_MAKE_ENV) PYTHON=$(HOST_DIR)/bin/python3 \ $(MAKE) -C $(@D) install \ DESTDIR=$(TARGET_DIR) \ $(TARGET_CONFIGURE_OPTS) \ diff --git a/package/nodejs/v8-qemu-wrapper.in b/package/nodejs/v8-qemu-wrapper.in new file mode 100644 index 0000000000..6ba6639d78 --- /dev/null +++ b/package/nodejs/v8-qemu-wrapper.in @@ -0,0 +1,12 @@ +#!/usr/bin/env sh + +# Pass -r to qemu-user as to trick glibc into not errorings out if the host kernel +# is older than the target kernel. +@QEMU_USER@ -r @TOOLCHAIN_HEADERS_VERSION@ \ + @QEMU_USERMODE_ARGS@ \ + -L "${STAGING_DIR}/" \ + "$@" + +if [ $? -ne 0 ]; then + exit 1 +fi -- 2.30.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 2021-10-08 20:43 ` [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 Adam Duskett @ 2021-10-08 21:16 ` Thomas Petazzoni 2021-10-09 0:20 ` Adam Duskett 0 siblings, 1 reply; 5+ messages in thread From: Thomas Petazzoni @ 2021-10-08 21:16 UTC (permalink / raw) To: Adam Duskett; +Cc: Daniel Price, Martin Bark, Asaf Kahlon, buildroot Hello, On Fri, 8 Oct 2021 13:43:42 -0700 Adam Duskett <aduskett@gmail.com> wrote: > Changes include: > - Remove the dependency on Python2, as nodejs 14 supports Python 3. > - Remove --without-snapshot as it's no longer a supported config option. > - Remove /openssl to the shared-openssl-includes config option, as the build > system automatically appends /openssl to the includes path. > > - Add a qemu wrapper. V8's JIT infrastructure requires binaries such as > mksnapshot and mkpeephole to be run in the host during the build. > However, these binaries must have the same bit-width as the target > (e.g. a x86_64 host targeting ARMv6 needs to produce a 32-bit binary). > To work around this issue, cross-compile the binaries for the target and > run them on the host with QEMU, much like gobject-introspection. > > Signed-off-by: Adam Duskett <aduskett@gmail.com> > --- > .../0001-add-qemu-wrapper-support.patch | 76 ++++++++++++++++++ > package/nodejs/Config.in | 15 +++- > package/nodejs/nodejs.hash | 6 +- > package/nodejs/nodejs.mk | 78 +++++++++++-------- > package/nodejs/v8-qemu-wrapper.in | 12 +++ > 5 files changed, 146 insertions(+), 41 deletions(-) > create mode 100644 package/nodejs/0001-add-qemu-wrapper-support.patch > create mode 100644 package/nodejs/v8-qemu-wrapper.in > > diff --git a/package/nodejs/0001-add-qemu-wrapper-support.patch b/package/nodejs/0001-add-qemu-wrapper-support.patch > new file mode 100644 > index 0000000000..9b81e3adab > --- /dev/null > +++ b/package/nodejs/0001-add-qemu-wrapper-support.patch > @@ -0,0 +1,76 @@ > +From fa09fa3ad6a21ae0b35fb860f76d1762e5f29972 Mon Sep 17 00:00:00 2001 > +From: Adam Duskett <aduskett@gmail.com> > +Date: Mon, 27 Sep 2021 12:55:09 -0700 > +Subject: [PATCH] 1 This is perhaps a bit weak as a commit title and commit description :-) > +# V8's JIT infrastructure requires binaries such as mksnapshot and > +# mkpeephole to be run in the host during the build. However, these > +# binaries must have the same bit-width as the target (e.g. a x86_64 > +# host targeting ARMv6 needs to produce a 32-bit binary). To work around this > +# issue, cross-compile the binaries for the target and run them on the > +# host with QEMU, much like gobject-introspection. > +define NODEJS_INSTALL_V8_QEMU_WRAPPER > + $(INSTALL) -D -m 755 $(NODEJS_PKGDIR)/v8-qemu-wrapper.in \ > + $(@D)/out/Release/v8-qemu-wrapper > + $(SED) "s%@QEMU_USER@%$(QEMU_USER)%g" \ > + $(@D)/out/Release/v8-qemu-wrapper > + $(SED) "s%@TOOLCHAIN_HEADERS_VERSION@%$(BR2_TOOLCHAIN_HEADERS_AT_LEAST)%g" \ > + $(@D)/out/Release/v8-qemu-wrapper > + $(SED) "s%@QEMU_USERMODE_ARGS@%$(call qstrip,$(BR2_PACKAGE_HOST_QEMU_USER_MODE_ARGS))%g" \ > + $(@D)/out/Release/v8-qemu-wrapper > +endef > +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_INSTALL_V8_QEMU_WRAPPER > > +define NODEJS_WRAPPER_FIXUP > + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/node.gyp > + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/tools/v8_gypfiles/v8.gyp > +endef > +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_WRAPPER_FIXUP > > +# Do not run the qemu-wrapper for the host build. > +define HOST_NODEJS_WRAPPER_FIXUP > + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/node.gyp > + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/tools/v8_gypfiles/v8.gyp > +endef > +HOST_NODEJS_PRE_CONFIGURE_HOOKS += HOST_NODEJS_WRAPPER_FIXUP Would have been great for MAYBE_WRAPPER to be a ./configure option :-) But fair enough. Overall, except the commit title/log of the patch, I don't see much problem with this patch. Thomas -- Thomas Petazzoni, co-owner and CEO, Bootlin Embedded Linux and Kernel engineering and training https://bootlin.com _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 2021-10-08 21:16 ` Thomas Petazzoni @ 2021-10-09 0:20 ` Adam Duskett 0 siblings, 0 replies; 5+ messages in thread From: Adam Duskett @ 2021-10-09 0:20 UTC (permalink / raw) To: Thomas Petazzoni; +Cc: Daniel Price, Martin Bark, Asaf Kahlon, buildroot Oh for Pete's sake! I will fix it asap! Adam On Fri, Oct 8, 2021 at 2:16 PM Thomas Petazzoni <thomas.petazzoni@bootlin.com> wrote: > > Hello, > > On Fri, 8 Oct 2021 13:43:42 -0700 > Adam Duskett <aduskett@gmail.com> wrote: > > > Changes include: > > - Remove the dependency on Python2, as nodejs 14 supports Python 3. > > - Remove --without-snapshot as it's no longer a supported config option. > > - Remove /openssl to the shared-openssl-includes config option, as the build > > system automatically appends /openssl to the includes path. > > > > - Add a qemu wrapper. V8's JIT infrastructure requires binaries such as > > mksnapshot and mkpeephole to be run in the host during the build. > > However, these binaries must have the same bit-width as the target > > (e.g. a x86_64 host targeting ARMv6 needs to produce a 32-bit binary). > > To work around this issue, cross-compile the binaries for the target and > > run them on the host with QEMU, much like gobject-introspection. > > > > Signed-off-by: Adam Duskett <aduskett@gmail.com> > > --- > > .../0001-add-qemu-wrapper-support.patch | 76 ++++++++++++++++++ > > package/nodejs/Config.in | 15 +++- > > package/nodejs/nodejs.hash | 6 +- > > package/nodejs/nodejs.mk | 78 +++++++++++-------- > > package/nodejs/v8-qemu-wrapper.in | 12 +++ > > 5 files changed, 146 insertions(+), 41 deletions(-) > > create mode 100644 package/nodejs/0001-add-qemu-wrapper-support.patch > > create mode 100644 package/nodejs/v8-qemu-wrapper.in > > > > diff --git a/package/nodejs/0001-add-qemu-wrapper-support.patch b/package/nodejs/0001-add-qemu-wrapper-support.patch > > new file mode 100644 > > index 0000000000..9b81e3adab > > --- /dev/null > > +++ b/package/nodejs/0001-add-qemu-wrapper-support.patch > > @@ -0,0 +1,76 @@ > > +From fa09fa3ad6a21ae0b35fb860f76d1762e5f29972 Mon Sep 17 00:00:00 2001 > > +From: Adam Duskett <aduskett@gmail.com> > > +Date: Mon, 27 Sep 2021 12:55:09 -0700 > > +Subject: [PATCH] 1 > > This is perhaps a bit weak as a commit title and commit description :-) > > > > +# V8's JIT infrastructure requires binaries such as mksnapshot and > > +# mkpeephole to be run in the host during the build. However, these > > +# binaries must have the same bit-width as the target (e.g. a x86_64 > > +# host targeting ARMv6 needs to produce a 32-bit binary). To work around this > > +# issue, cross-compile the binaries for the target and run them on the > > +# host with QEMU, much like gobject-introspection. > > +define NODEJS_INSTALL_V8_QEMU_WRAPPER > > + $(INSTALL) -D -m 755 $(NODEJS_PKGDIR)/v8-qemu-wrapper.in \ > > + $(@D)/out/Release/v8-qemu-wrapper > > + $(SED) "s%@QEMU_USER@%$(QEMU_USER)%g" \ > > + $(@D)/out/Release/v8-qemu-wrapper > > + $(SED) "s%@TOOLCHAIN_HEADERS_VERSION@%$(BR2_TOOLCHAIN_HEADERS_AT_LEAST)%g" \ > > + $(@D)/out/Release/v8-qemu-wrapper > > + $(SED) "s%@QEMU_USERMODE_ARGS@%$(call qstrip,$(BR2_PACKAGE_HOST_QEMU_USER_MODE_ARGS))%g" \ > > + $(@D)/out/Release/v8-qemu-wrapper > > +endef > > +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_INSTALL_V8_QEMU_WRAPPER > > > > +define NODEJS_WRAPPER_FIXUP > > + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/node.gyp > > + $(SED) "s%@MAYBE_WRAPPER@%'<(PRODUCT_DIR)/v8-qemu-wrapper',%g" $(@D)/tools/v8_gypfiles/v8.gyp > > +endef > > +NODEJS_PRE_CONFIGURE_HOOKS += NODEJS_WRAPPER_FIXUP > > > > +# Do not run the qemu-wrapper for the host build. > > +define HOST_NODEJS_WRAPPER_FIXUP > > + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/node.gyp > > + $(SED) "s%@MAYBE_WRAPPER@%%g" $(@D)/tools/v8_gypfiles/v8.gyp > > +endef > > +HOST_NODEJS_PRE_CONFIGURE_HOOKS += HOST_NODEJS_WRAPPER_FIXUP > > Would have been great for MAYBE_WRAPPER to be a ./configure option :-) > But fair enough. > > Overall, except the commit title/log of the patch, I don't see much > problem with this patch. > > Thomas > -- > Thomas Petazzoni, co-owner and CEO, Bootlin > Embedded Linux and Kernel engineering and training > https://bootlin.com _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-09 0:20 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-08 20:43 [Buildroot] [PATCH v3 0/2] package/nodejs: bump version to 14.17.6 Adam Duskett 2021-10-08 20:43 ` [Buildroot] [PATCH v3 1/2] package/python3: Add bzip2 option to host Adam Duskett 2021-10-08 20:43 ` [Buildroot] [PATCH v3 2/2] package/nodejs: bump version to 14.17.6 Adam Duskett 2021-10-08 21:16 ` Thomas Petazzoni 2021-10-09 0:20 ` Adam Duskett
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox