-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nodejs-22: (riscv64, backport) fix build
Ref: nodejs/node#52888 Ref: nodejs/node#52678
- Loading branch information
1 parent
cc5ebc6
commit 7130525
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
lang-js/nodejs-22/autobuild/patches/0001-UPSTREAM-tools-fix-riscv64-build-failed.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
From 1613ecb0010f4869d0a9944fcd34fb78bfdb0361 Mon Sep 17 00:00:00 2001 | ||
From: Lu Yahan <[email protected]> | ||
Date: Wed, 8 May 2024 16:34:24 +0800 | ||
Subject: [PATCH] UPSTREAM: tools: fix riscv64 build failed | ||
|
||
Fix build failure on riscv64 since v22. | ||
|
||
Ref: https://github.com/nodejs/node/pull/52888 | ||
Ref: https://github.com/nodejs/node/issues/52678 | ||
--- | ||
tools/v8_gypfiles/v8.gyp | 17 +++++++++++++++++ | ||
1 file changed, 17 insertions(+) | ||
|
||
diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp | ||
index c680132f80..f0d53831f5 100644 | ||
--- a/tools/v8_gypfiles/v8.gyp | ||
+++ b/tools/v8_gypfiles/v8.gyp | ||
@@ -1168,6 +1168,23 @@ | ||
'sources': [ | ||
'<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\"riscv64\\".*?sources \\+= ")', | ||
], | ||
+ 'conditions': [ | ||
+ ['v8_enable_webassembly==1', { | ||
+ 'conditions': [ | ||
+ ['(_toolset=="host" and host_arch=="riscv64" or _toolset=="target" and target_arch=="riscv64") or (_toolset=="host" and host_arch=="x64" or _toolset=="target" and target_arch=="x64")', { | ||
+ 'sources': [ | ||
+ '<(V8_ROOT)/src/trap-handler/handler-inside-posix.cc', | ||
+ '<(V8_ROOT)/src/trap-handler/handler-outside-posix.cc', | ||
+ ], | ||
+ }], | ||
+ ['(_toolset=="host" and host_arch=="x64" or _toolset=="target" and target_arch=="x64") and (OS=="linux")', { | ||
+ 'sources': [ | ||
+ '<(V8_ROOT)/src/trap-handler/handler-outside-simulator.cc', | ||
+ ], | ||
+ }], | ||
+ ], | ||
+ }], | ||
+ ], | ||
}], | ||
['v8_target_arch=="loong64"', { | ||
'sources': [ | ||
-- | ||
2.47.0 | ||
|