forked from pool/nodejs20
* Experimental Network Inspection Support in Node.js * Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext * New option for vm.createContext() to create a context with a freezable globalThis * buffer: optimize createFromString - Changes in 20.17.0: * module: support require()ing synchronous ESM graphs * path: add matchesGlob method * stream: expose DuplexPair API - Changes in 20.16.0: * process: add process.getBuiltinModule(id) * inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth * buffer: add .bytes() method to Blob - CVE-2024-21538.patch: fixes regular expression denial of service (bsc#1233856, CVE-2024-21538) - linker_lto_jobs.patch, fix_ci_tests.patch: refreshed OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs20?expand=0&rev=85
26 lines
751 B
Diff
26 lines
751 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-v20.18.1/node.gyp
|
|
===================================================================
|
|
--- node-v20.18.1.orig/node.gyp
|
|
+++ node-v20.18.1/node.gyp
|
|
@@ -1155,6 +1155,7 @@
|
|
'deps/uvwasi/uvwasi.gyp:uvwasi',
|
|
'deps/simdutf/simdutf.gyp:simdutf',
|
|
'deps/ada/ada.gyp:ada',
|
|
+ 'fuzz_env'
|
|
],
|
|
|
|
'includes': [
|
|
@@ -1229,6 +1230,7 @@
|
|
'<(node_lib_target_name)',
|
|
'deps/histogram/histogram.gyp:histogram',
|
|
'deps/ada/ada.gyp:ada',
|
|
+ 'cctest'
|
|
],
|
|
|
|
'includes': [
|