forked from pool/nodejs22
Adam Majer
778f39206c
* cli: allow running wasm in limited vmem with --disable-wasm-trap-handler * doc: add pimterry to collaborators * fs: allow 'withFileTypes' to be used with globs * inspector: introduce the --inspect-wait flag * lib,src: remove --experimental-policy * perf_hooks: add deliveryType and responseStatus fields * test_runner: support test plans * zlib: expose zlib.crc32() - linker_lto_jobs.patch: refreshed - fix_ci_tests.patch: partially upstreamed, refreshed - skip_no_console.patch: dropped, upstreamed OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs22?expand=0&rev=7
26 lines
754 B
Diff
26 lines
754 B
Diff
Purpose of these dependencies is to make sure that the linker
|
|
is run serially over these binaries instead of in parallel.
|
|
OBS workers run out of memory as each executable seems to require
|
|
upward of 5G RAM
|
|
|
|
Index: node-v22.2.0/node.gyp
|
|
===================================================================
|
|
--- node-v22.2.0.orig/node.gyp
|
|
+++ node-v22.2.0/node.gyp
|
|
@@ -1167,6 +1167,7 @@
|
|
'deps/simdjson/simdjson.gyp:simdjson',
|
|
'deps/simdutf/simdutf.gyp:simdutf',
|
|
'deps/ada/ada.gyp:ada',
|
|
+ 'fuzz_env'
|
|
],
|
|
|
|
'includes': [
|
|
@@ -1241,6 +1242,7 @@
|
|
'<(node_lib_target_name)',
|
|
'deps/histogram/histogram.gyp:histogram',
|
|
'deps/ada/ada.gyp:ada',
|
|
+ 'cctest'
|
|
],
|
|
|
|
'includes': [
|