mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-27 09:30:45 +00:00
nodejs: make 14.18.1 available but not default
Chromium 112 needs nodejs-native version 14 or later. Add the nodejs_14.18.1 recipe from kirkstone: 246b20b92 nodejs: Upgrade to 14.18.1 but, use DEFAULT_PREFERENCE to make sure that the default version of nodejs remains 12.x. 7 patches which were modified between nodejs 12 & nodejs 14 were renamed by adding the suffix "-nodejs14". Note there are some common patches used by nodejs 12 & 14 so, that will require attention during future maintenance. In addition, there were 3 CVE-2022* patches which applied cleanly to nodejs 14 so, they were added to the nodejs 14 recipe. One patch, CVE-llhttp.patch conflicted so, it has not been applied in nodejs 14 yet. Nodejs 14 compile for qemux86-64 but, no run-time testing has been performed. For chromium, we would either require users to modify the local.conf file or we may create a dunfell specific branch in meta-browser. See: https://github.com/OSSystems/meta-browser/pull/709 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Narpat Mali <narpat.mali@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
4c533a5f90
commit
116bfe8d5e
@ -0,0 +1,22 @@
|
|||||||
|
From 7d94bfe53beeb2d25eb5f2ff6b1d509df7e6ab80 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Zuzana Svetlikova <zsvetlik@redhat.com>
|
||||||
|
Date: Thu, 27 Apr 2017 14:25:42 +0200
|
||||||
|
Subject: [PATCH] Disable running gyp on shared deps
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index 93d63110..79caaec2 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -138,7 +138,7 @@ with-code-cache test-code-cache:
|
||||||
|
$(warning '$@' target is a noop)
|
||||||
|
|
||||||
|
out/Makefile: config.gypi common.gypi node.gyp \
|
||||||
|
- deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \
|
||||||
|
+ deps/llhttp/llhttp.gyp \
|
||||||
|
tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
|
||||||
|
tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
|
||||||
|
$(PYTHON) tools/gyp_node.py -f make
|
||||||
@ -0,0 +1,40 @@
|
|||||||
|
From e1d838089cd461d9efcf4d29d9f18f65994d2d6b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Alexander Kanavin <alex@linutronix.de>
|
||||||
|
Date: Sun, 3 Oct 2021 22:48:39 +0200
|
||||||
|
Subject: [PATCH] jinja/tests.py: add py 3.10 fix
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
||||||
|
---
|
||||||
|
deps/v8/third_party/jinja2/tests.py | 2 +-
|
||||||
|
tools/inspector_protocol/jinja2/tests.py | 2 +-
|
||||||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/deps/v8/third_party/jinja2/tests.py b/deps/v8/third_party/jinja2/tests.py
|
||||||
|
index 0adc3d4..b14f85f 100644
|
||||||
|
--- a/deps/v8/third_party/jinja2/tests.py
|
||||||
|
+++ b/deps/v8/third_party/jinja2/tests.py
|
||||||
|
@@ -10,7 +10,7 @@
|
||||||
|
"""
|
||||||
|
import operator
|
||||||
|
import re
|
||||||
|
-from collections import Mapping
|
||||||
|
+from collections.abc import Mapping
|
||||||
|
from jinja2.runtime import Undefined
|
||||||
|
from jinja2._compat import text_type, string_types, integer_types
|
||||||
|
import decimal
|
||||||
|
diff --git a/tools/inspector_protocol/jinja2/tests.py b/tools/inspector_protocol/jinja2/tests.py
|
||||||
|
index 0adc3d4..b14f85f 100644
|
||||||
|
--- a/tools/inspector_protocol/jinja2/tests.py
|
||||||
|
+++ b/tools/inspector_protocol/jinja2/tests.py
|
||||||
|
@@ -10,7 +10,7 @@
|
||||||
|
"""
|
||||||
|
import operator
|
||||||
|
import re
|
||||||
|
-from collections import Mapping
|
||||||
|
+from collections.abc import Mapping
|
||||||
|
from jinja2.runtime import Undefined
|
||||||
|
from jinja2._compat import text_type, string_types, integer_types
|
||||||
|
import decimal
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
From 0976af0f3b328436ea44a74a406f311adb2ab211 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Tue, 15 Jun 2021 19:01:31 -0700
|
||||||
|
Subject: [PATCH] ppc64: Do not use -mminimal-toc with clang
|
||||||
|
|
||||||
|
clang does not support this option
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
common.gypi | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/common.gypi b/common.gypi
|
||||||
|
index ee91fb1d..049c8f8c 100644
|
||||||
|
--- a/common.gypi
|
||||||
|
+++ b/common.gypi
|
||||||
|
@@ -413,7 +413,7 @@
|
||||||
|
'ldflags': [ '-m32' ],
|
||||||
|
}],
|
||||||
|
[ 'target_arch=="ppc64" and OS!="aix"', {
|
||||||
|
- 'cflags': [ '-m64', '-mminimal-toc' ],
|
||||||
|
+ 'cflags': [ '-m64' ],
|
||||||
|
'ldflags': [ '-m64' ],
|
||||||
|
}],
|
||||||
|
[ 'target_arch=="s390x"', {
|
||||||
|
--
|
||||||
|
2.32.0
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
From 6c3ac20477a4bac643088f24df3c042e627fafa9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Guillaume Burel <guillaume.burel@stormshield.eu>
|
||||||
|
Date: Fri, 3 Jan 2020 11:25:54 +0100
|
||||||
|
Subject: [PATCH] Using native binaries
|
||||||
|
|
||||||
|
---
|
||||||
|
node.gyp | 4 ++--
|
||||||
|
tools/v8_gypfiles/v8.gyp | 11 ++++-------
|
||||||
|
2 files changed, 6 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
|
--- a/node.gyp
|
||||||
|
+++ b/node.gyp
|
||||||
|
@@ -487,6 +487,7 @@
|
||||||
|
'action_name': 'run_mkcodecache',
|
||||||
|
'process_outputs_as_sources': 1,
|
||||||
|
'inputs': [
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(mkcodecache_exec)',
|
||||||
|
],
|
||||||
|
'outputs': [
|
||||||
|
@@ -512,6 +513,7 @@
|
||||||
|
'action_name': 'node_mksnapshot',
|
||||||
|
'process_outputs_as_sources': 1,
|
||||||
|
'inputs': [
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(node_mksnapshot_exec)',
|
||||||
|
],
|
||||||
|
'outputs': [
|
||||||
|
--- a/tools/v8_gypfiles/v8.gyp
|
||||||
|
+++ b/tools/v8_gypfiles/v8.gyp
|
||||||
|
@@ -220,6 +220,7 @@
|
||||||
|
{
|
||||||
|
'action_name': 'run_torque_action',
|
||||||
|
'inputs': [ # Order matters.
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)torque<(EXECUTABLE_SUFFIX)',
|
||||||
|
'<@(torque_files)',
|
||||||
|
],
|
||||||
|
@@ -351,6 +352,7 @@
|
||||||
|
{
|
||||||
|
'action_name': 'generate_bytecode_builtins_list_action',
|
||||||
|
'inputs': [
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)bytecode_builtins_list_generator<(EXECUTABLE_SUFFIX)',
|
||||||
|
],
|
||||||
|
'outputs': [
|
||||||
|
@@ -533,6 +535,7 @@
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'inputs': [
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(mksnapshot_exec)',
|
||||||
|
],
|
||||||
|
'outputs': [
|
||||||
|
@@ -1448,6 +1451,7 @@
|
||||||
|
{
|
||||||
|
'action_name': 'run_gen-regexp-special-case_action',
|
||||||
|
'inputs': [
|
||||||
|
+ '<(PRODUCT_DIR)/v8-qemu-wrapper.sh',
|
||||||
|
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen-regexp-special-case<(EXECUTABLE_SUFFIX)',
|
||||||
|
],
|
||||||
|
'outputs': [
|
||||||
@ -0,0 +1,84 @@
|
|||||||
|
From 5b22fac923d1ca3e9fefb97f5a171124a88f5e22 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
Date: Tue, 19 Mar 2019 23:22:40 -0400
|
||||||
|
Subject: [PATCH] Install both binaries and use libdir.
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This allows us to build with a shared library for other users while
|
||||||
|
still providing the normal executable.
|
||||||
|
|
||||||
|
Taken from - https://src.fedoraproject.org/rpms/nodejs/raw/rawhide/f/0002-Install-both-binaries-and-use-libdir.patch
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
configure.py | 7 +++++++
|
||||||
|
tools/install.py | 21 +++++++++------------
|
||||||
|
2 files changed, 16 insertions(+), 12 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/configure.py b/configure.py
|
||||||
|
index e6f7e4db..6cf5c45d 100755
|
||||||
|
--- a/configure.py
|
||||||
|
+++ b/configure.py
|
||||||
|
@@ -626,6 +626,12 @@ parser.add_option('--shared',
|
||||||
|
help='compile shared library for embedding node in another project. ' +
|
||||||
|
'(This mode is not officially supported for regular applications)')
|
||||||
|
|
||||||
|
+parser.add_option('--libdir',
|
||||||
|
+ action='store',
|
||||||
|
+ dest='libdir',
|
||||||
|
+ default='lib',
|
||||||
|
+ help='a directory to install the shared library into')
|
||||||
|
+
|
||||||
|
parser.add_option('--without-v8-platform',
|
||||||
|
action='store_true',
|
||||||
|
dest='without_v8_platform',
|
||||||
|
@@ -1202,6 +1208,7 @@ def configure_node(o):
|
||||||
|
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
|
||||||
|
|
||||||
|
o['variables']['node_shared'] = b(options.shared)
|
||||||
|
+ o['variables']['libdir'] = options.libdir
|
||||||
|
node_module_version = getmoduleversion.get_version()
|
||||||
|
|
||||||
|
if options.dest_os == 'android':
|
||||||
|
diff --git a/tools/install.py b/tools/install.py
|
||||||
|
index 729b416f..9bfc6234 100755
|
||||||
|
--- a/tools/install.py
|
||||||
|
+++ b/tools/install.py
|
||||||
|
@@ -121,22 +121,19 @@ def subdir_files(path, dest, action):
|
||||||
|
|
||||||
|
def files(action):
|
||||||
|
is_windows = sys.platform == 'win32'
|
||||||
|
- output_file = 'node'
|
||||||
|
output_prefix = 'out/Release/'
|
||||||
|
+ output_libprefix = output_prefix
|
||||||
|
|
||||||
|
- if 'false' == variables.get('node_shared'):
|
||||||
|
- if is_windows:
|
||||||
|
- output_file += '.exe'
|
||||||
|
+ if is_windows:
|
||||||
|
+ output_bin = 'node.exe'
|
||||||
|
+ output_lib = 'node.dll'
|
||||||
|
else:
|
||||||
|
- if is_windows:
|
||||||
|
- output_file += '.dll'
|
||||||
|
- else:
|
||||||
|
- output_file = 'lib' + output_file + '.' + variables.get('shlib_suffix')
|
||||||
|
+ output_bin = 'node'
|
||||||
|
+ output_lib = 'libnode.' + variables.get('shlib_suffix')
|
||||||
|
|
||||||
|
- if 'false' == variables.get('node_shared'):
|
||||||
|
- action([output_prefix + output_file], 'bin/' + output_file)
|
||||||
|
- else:
|
||||||
|
- action([output_prefix + output_file], 'lib/' + output_file)
|
||||||
|
+ action([output_prefix + output_bin], 'bin/' + output_bin)
|
||||||
|
+ if 'true' == variables.get('node_shared'):
|
||||||
|
+ action([output_libprefix + output_lib], variables.get('libdir') + '/' + output_lib)
|
||||||
|
|
||||||
|
if 'true' == variables.get('node_use_dtrace'):
|
||||||
|
action(['out/Release/node.d'], 'lib/dtrace/node.d')
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
Link mksnapshot with libatomic on x86
|
||||||
|
|
||||||
|
Clang-12 on x86 emits atomic builtins
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
| module-compiler.cc:(.text._ZN2v88internal4wasm12_GLOBAL__N_123ExecuteCompilationUnitsERKSt10shared_ptrINS2_22BackgroundCompileTokenEEPNS0_8CountersEiNS2_19CompileBaselineOnlyE+0x558): un
|
||||||
|
defined reference to `__atomic_load'
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
--- a/tools/v8_gypfiles/v8.gyp
|
||||||
|
+++ b/tools/v8_gypfiles/v8.gyp
|
||||||
|
@@ -1336,6 +1336,7 @@
|
||||||
|
{
|
||||||
|
'target_name': 'mksnapshot',
|
||||||
|
'type': 'executable',
|
||||||
|
+ 'libraries': [ '-latomic' ],
|
||||||
|
'dependencies': [
|
||||||
|
'v8_base_without_compiler',
|
||||||
|
'v8_compiler_for_mksnapshot',
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
Description: mksnapshot uses too much memory on 32-bit mipsel
|
||||||
|
Author: Jérémy Lal <kapouer@melix.org>
|
||||||
|
Last-Update: 2020-06-03
|
||||||
|
Forwarded: https://bugs.chromium.org/p/v8/issues/detail?id=10586
|
||||||
|
|
||||||
|
This ensures that we reserve 500M instead of 2G range for codegen
|
||||||
|
ensures that qemu-mips can allocate such large ranges
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
--- a/deps/v8/src/common/globals.h
|
||||||
|
+++ b/deps/v8/src/common/globals.h
|
||||||
|
@@ -224,7 +224,7 @@ constexpr size_t kMinimumCodeRangeSize =
|
||||||
|
constexpr size_t kMinExpectedOSPageSize = 64 * KB; // OS page on PPC Linux
|
||||||
|
#elif V8_TARGET_ARCH_MIPS
|
||||||
|
constexpr bool kPlatformRequiresCodeRange = false;
|
||||||
|
-constexpr size_t kMaximalCodeRangeSize = 2048LL * MB;
|
||||||
|
+constexpr size_t kMaximalCodeRangeSize = 512 * MB;
|
||||||
|
constexpr size_t kMinimumCodeRangeSize = 0 * MB;
|
||||||
|
constexpr size_t kMinExpectedOSPageSize = 4 * KB; // OS page.
|
||||||
|
#else
|
||||||
|
--- a/deps/v8/src/codegen/mips/constants-mips.h
|
||||||
|
+++ b/deps/v8/src/codegen/mips/constants-mips.h
|
||||||
|
@@ -140,7 +140,7 @@ const uint32_t kLeastSignificantByteInIn
|
||||||
|
namespace v8 {
|
||||||
|
namespace internal {
|
||||||
|
|
||||||
|
-constexpr size_t kMaxPCRelativeCodeRangeInMB = 4096;
|
||||||
|
+constexpr size_t kMaxPCRelativeCodeRangeInMB = 1024;
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------
|
||||||
|
// Registers and FPURegisters.
|
||||||
205
meta-oe/recipes-devtools/nodejs/nodejs_14.18.1.bb
Normal file
205
meta-oe/recipes-devtools/nodejs/nodejs_14.18.1.bb
Normal file
@ -0,0 +1,205 @@
|
|||||||
|
DESCRIPTION = "nodeJS Evented I/O for V8 JavaScript"
|
||||||
|
HOMEPAGE = "http://nodejs.org"
|
||||||
|
LICENSE = "MIT & BSD & Artistic-2.0"
|
||||||
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6768abdfc4dae4fde59d6b4df96930f3"
|
||||||
|
|
||||||
|
DEFAULT_PREFERENCE = "-1"
|
||||||
|
|
||||||
|
DEPENDS = "openssl"
|
||||||
|
DEPENDS:append:class-target = " qemu-native"
|
||||||
|
DEPENDS:append:class-native = " c-ares-native"
|
||||||
|
|
||||||
|
inherit pkgconfig python3native qemu
|
||||||
|
|
||||||
|
COMPATIBLE_MACHINE:armv4 = "(!.*armv4).*"
|
||||||
|
COMPATIBLE_MACHINE:armv5 = "(!.*armv5).*"
|
||||||
|
COMPATIBLE_MACHINE:mips64 = "(!.*mips64).*"
|
||||||
|
|
||||||
|
COMPATIBLE_HOST:riscv64 = "null"
|
||||||
|
COMPATIBLE_HOST:riscv32 = "null"
|
||||||
|
|
||||||
|
SRC_URI = "http://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz \
|
||||||
|
file://0001-Disable-running-gyp-files-for-bundled-deps-nodejs14.patch \
|
||||||
|
file://0003-Install-both-binaries-and-use-libdir-nodejs14.patch \
|
||||||
|
file://0004-v8-don-t-override-ARM-CFLAGS.patch \
|
||||||
|
file://big-endian.patch \
|
||||||
|
file://mips-warnings.patch \
|
||||||
|
file://mips-less-memory-nodejs14.patch \
|
||||||
|
file://0001-jinja-tests.py-add-py-3.10-fix-nodejs14.patch \
|
||||||
|
file://CVE-2022-32212.patch \
|
||||||
|
file://CVE-2022-35255.patch \
|
||||||
|
file://CVE-2022-43548.patch \
|
||||||
|
"
|
||||||
|
SRC_URI:append:class-target = " \
|
||||||
|
file://0002-Using-native-binaries-nodejs14.patch \
|
||||||
|
"
|
||||||
|
SRC_URI:append:toolchain-clang:x86 = " \
|
||||||
|
file://libatomic-nodejs14.patch \
|
||||||
|
"
|
||||||
|
SRC_URI:append:toolchain-clang:powerpc64le = " \
|
||||||
|
file://0001-ppc64-Do-not-use-mminimal-toc-with-clang-nodejs14.patch \
|
||||||
|
"
|
||||||
|
SRC_URI[sha256sum] = "3fa1d71adddfab2f5e3e41874b4eddbdf92b65cade4a43922fb1e437afcf89ed"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/node-v${PV}"
|
||||||
|
|
||||||
|
# v8 errors out if you have set CCACHE
|
||||||
|
CCACHE = ""
|
||||||
|
|
||||||
|
def map_nodejs_arch(a, d):
|
||||||
|
import re
|
||||||
|
|
||||||
|
if re.match('i.86$', a): return 'ia32'
|
||||||
|
elif re.match('x86_64$', a): return 'x64'
|
||||||
|
elif re.match('aarch64$', a): return 'arm64'
|
||||||
|
elif re.match('(powerpc64|powerpc64le|ppc64le)$', a): return 'ppc64'
|
||||||
|
elif re.match('powerpc$', a): return 'ppc'
|
||||||
|
return a
|
||||||
|
|
||||||
|
ARCHFLAGS:arm = "${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '--with-arm-float-abi=hard', '--with-arm-float-abi=softfp', d)} \
|
||||||
|
${@bb.utils.contains('TUNE_FEATURES', 'neon', '--with-arm-fpu=neon', \
|
||||||
|
bb.utils.contains('TUNE_FEATURES', 'vfpv3d16', '--with-arm-fpu=vfpv3-d16', \
|
||||||
|
bb.utils.contains('TUNE_FEATURES', 'vfpv3', '--with-arm-fpu=vfpv3', \
|
||||||
|
'--with-arm-fpu=vfp', d), d), d)}"
|
||||||
|
GYP_DEFINES:append:mipsel = " mips_arch_variant='r1' "
|
||||||
|
ARCHFLAGS ?= ""
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "brotli icu zlib"
|
||||||
|
|
||||||
|
PACKAGECONFIG[ares] = "--shared-cares,,c-ares"
|
||||||
|
PACKAGECONFIG[brotli] = "--shared-brotli,,brotli"
|
||||||
|
PACKAGECONFIG[icu] = "--with-intl=system-icu,--without-intl,icu"
|
||||||
|
PACKAGECONFIG[libuv] = "--shared-libuv,,libuv"
|
||||||
|
PACKAGECONFIG[nghttp2] = "--shared-nghttp2,,nghttp2"
|
||||||
|
PACKAGECONFIG[shared] = "--shared"
|
||||||
|
PACKAGECONFIG[zlib] = "--shared-zlib,,zlib"
|
||||||
|
|
||||||
|
# We don't want to cross-compile during target compile,
|
||||||
|
# and we need to use the right flags during host compile,
|
||||||
|
# too.
|
||||||
|
EXTRA_OEMAKE = "\
|
||||||
|
CC.host='${CC}' \
|
||||||
|
CFLAGS.host='${CPPFLAGS} ${CFLAGS}' \
|
||||||
|
CXX.host='${CXX}' \
|
||||||
|
CXXFLAGS.host='${CPPFLAGS} ${CXXFLAGS}' \
|
||||||
|
LDFLAGS.host='${LDFLAGS}' \
|
||||||
|
AR.host='${AR}' \
|
||||||
|
\
|
||||||
|
builddir_name=./ \
|
||||||
|
"
|
||||||
|
|
||||||
|
python do_unpack() {
|
||||||
|
import shutil
|
||||||
|
|
||||||
|
bb.build.exec_func('base_do_unpack', d)
|
||||||
|
|
||||||
|
if 'ares' in d.getVar('PACKAGECONFIG'):
|
||||||
|
shutil.rmtree(d.getVar('S') + '/deps/cares', True)
|
||||||
|
if 'brotli' in d.getVar('PACKAGECONFIG'):
|
||||||
|
shutil.rmtree(d.getVar('S') + '/deps/brotli', True)
|
||||||
|
if 'libuv' in d.getVar('PACKAGECONFIG'):
|
||||||
|
shutil.rmtree(d.getVar('S') + '/deps/uv', True)
|
||||||
|
if 'nghttp2' in d.getVar('PACKAGECONFIG'):
|
||||||
|
shutil.rmtree(d.getVar('S') + '/deps/nghttp2', True)
|
||||||
|
if 'zlib' in d.getVar('PACKAGECONFIG'):
|
||||||
|
shutil.rmtree(d.getVar('S') + '/deps/zlib', True)
|
||||||
|
}
|
||||||
|
|
||||||
|
# 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). Instead of
|
||||||
|
# depending on a third Yocto toolchain, we just build those binaries
|
||||||
|
# for the target and run them on the host with QEMU.
|
||||||
|
python do_create_v8_qemu_wrapper () {
|
||||||
|
"""Creates a small wrapper that invokes QEMU to run some target V8 binaries
|
||||||
|
on the host."""
|
||||||
|
qemu_libdirs = [d.expand('${STAGING_DIR_HOST}${libdir}'),
|
||||||
|
d.expand('${STAGING_DIR_HOST}${base_libdir}')]
|
||||||
|
qemu_cmd = qemu_wrapper_cmdline(d, d.getVar('STAGING_DIR_HOST', True),
|
||||||
|
qemu_libdirs)
|
||||||
|
wrapper_path = d.expand('${B}/v8-qemu-wrapper.sh')
|
||||||
|
with open(wrapper_path, 'w') as wrapper_file:
|
||||||
|
wrapper_file.write("""#!/bin/sh
|
||||||
|
|
||||||
|
# This file has been generated automatically.
|
||||||
|
# It invokes QEMU to run binaries built for the target in the host during the
|
||||||
|
# build process.
|
||||||
|
|
||||||
|
%s "$@"
|
||||||
|
""" % qemu_cmd)
|
||||||
|
os.chmod(wrapper_path, 0o755)
|
||||||
|
}
|
||||||
|
|
||||||
|
do_create_v8_qemu_wrapper[dirs] = "${B}"
|
||||||
|
addtask create_v8_qemu_wrapper after do_configure before do_compile
|
||||||
|
|
||||||
|
LDFLAGS:append:x86 = " -latomic"
|
||||||
|
|
||||||
|
# Node is way too cool to use proper autotools, so we install two wrappers to forcefully inject proper arch cflags to workaround gypi
|
||||||
|
do_configure () {
|
||||||
|
export LD="${CXX}"
|
||||||
|
GYP_DEFINES="${GYP_DEFINES}" export GYP_DEFINES
|
||||||
|
# $TARGET_ARCH settings don't match --dest-cpu settings
|
||||||
|
python3 configure.py --prefix=${prefix} --cross-compiling \
|
||||||
|
--without-dtrace \
|
||||||
|
--without-etw \
|
||||||
|
--dest-cpu="${@map_nodejs_arch(d.getVar('TARGET_ARCH'), d)}" \
|
||||||
|
--dest-os=linux \
|
||||||
|
--libdir=${D}${libdir} \
|
||||||
|
${ARCHFLAGS} \
|
||||||
|
${PACKAGECONFIG_CONFARGS}
|
||||||
|
}
|
||||||
|
|
||||||
|
do_compile () {
|
||||||
|
export LD="${CXX}"
|
||||||
|
install -Dm 0755 ${B}/v8-qemu-wrapper.sh ${B}/out/Release/v8-qemu-wrapper.sh
|
||||||
|
oe_runmake BUILDTYPE=Release
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install () {
|
||||||
|
oe_runmake install DESTDIR=${D}
|
||||||
|
|
||||||
|
# wasn't updated since 2009 and is the only thing requiring python2 in runtime
|
||||||
|
# ERROR: nodejs-12.14.1-r0 do_package_qa: QA Issue: /usr/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples contained in package nodejs-npm requires /usr/bin/python, but no providers found in RDEPENDS:nodejs-npm? [file-rdeps]
|
||||||
|
rm -f ${D}${exec_prefix}/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install:append:class-native() {
|
||||||
|
# use node from PATH instead of absolute path to sysroot
|
||||||
|
# node-v0.10.25/tools/install.py is using:
|
||||||
|
# shebang = os.path.join(node_prefix, 'bin/node')
|
||||||
|
# update_shebang(link_path, shebang)
|
||||||
|
# and node_prefix can be very long path to bindir in native sysroot and
|
||||||
|
# when it exceeds 128 character shebang limit it's stripped to incorrect path
|
||||||
|
# and npm fails to execute like in this case with 133 characters show in log.do_install:
|
||||||
|
# updating shebang of /home/jenkins/workspace/build-webos-nightly/device/qemux86/label/open-webos-builder/BUILD-qemux86/work/x86_64-linux/nodejs-native/0.10.15-r0/image/home/jenkins/workspace/build-webos-nightly/device/qemux86/label/open-webos-builder/BUILD-qemux86/sysroots/x86_64-linux/usr/bin/npm to /home/jenkins/workspace/build-webos-nightly/device/qemux86/label/open-webos-builder/BUILD-qemux86/sysroots/x86_64-linux/usr/bin/node
|
||||||
|
# /usr/bin/npm is symlink to /usr/lib/node_modules/npm/bin/npm-cli.js
|
||||||
|
# use sed on npm-cli.js because otherwise symlink is replaced with normal file and
|
||||||
|
# npm-cli.js continues to use old shebang
|
||||||
|
sed "1s^.*^#\!/usr/bin/env node^g" -i ${D}${exec_prefix}/lib/node_modules/npm/bin/npm-cli.js
|
||||||
|
|
||||||
|
# Install the native binaries to provide it within sysroot for the target compilation
|
||||||
|
install -d ${D}${bindir}
|
||||||
|
install -m 0755 ${S}/out/Release/torque ${D}${bindir}/torque
|
||||||
|
install -m 0755 ${S}/out/Release/bytecode_builtins_list_generator ${D}${bindir}/bytecode_builtins_list_generator
|
||||||
|
if ${@bb.utils.contains('PACKAGECONFIG','icu','true','false',d)}; then
|
||||||
|
install -m 0755 ${S}/out/Release/gen-regexp-special-case ${D}${bindir}/gen-regexp-special-case
|
||||||
|
fi
|
||||||
|
install -m 0755 ${S}/out/Release/mkcodecache ${D}${bindir}/mkcodecache
|
||||||
|
install -m 0755 ${S}/out/Release/node_mksnapshot ${D}${bindir}/node_mksnapshot
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install:append:class-target() {
|
||||||
|
sed "1s^.*^#\!${bindir}/env node^g" -i ${D}${exec_prefix}/lib/node_modules/npm/bin/npm-cli.js
|
||||||
|
}
|
||||||
|
|
||||||
|
PACKAGES =+ "${PN}-npm"
|
||||||
|
FILES:${PN}-npm = "${exec_prefix}/lib/node_modules ${bindir}/npm ${bindir}/npx"
|
||||||
|
RDEPENDS:${PN}-npm = "bash python3-core python3-shell python3-datetime \
|
||||||
|
python3-misc python3-multiprocessing"
|
||||||
|
|
||||||
|
PACKAGES =+ "${PN}-systemtap"
|
||||||
|
FILES:${PN}-systemtap = "${datadir}/systemtap"
|
||||||
|
|
||||||
|
BBCLASSEXTEND = "native"
|
||||||
Loading…
x
Reference in New Issue
Block a user