Skip to content

Commit 40b2fa4

Browse files
committed
deps: V8: cherry-pick 45e49775f5a3
Original commit message: [arm64][msvc] fix arm64 build on msvc See: #35415 (comment) Co-authored-by: Richard Townsend <[email protected]> Change-Id: I440644f55dc8c8ec3108e5015ebbce2829dd8207 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2479602 Reviewed-by: Jakob Gruber <[email protected]> Commit-Queue: Jakob Gruber <[email protected]> Auto-Submit: Jiawen Geng <[email protected]> Cr-Commit-Position: refs/heads/master@{#70648} Refs: v8/v8@45e4977 PR-URL: #35700 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Shelley Vohr <[email protected]>
1 parent cd91ab5 commit 40b2fa4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.13',
39+
'v8_embedder_string': '-node.14',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/snapshot/embedded/platform-embedded-file-writer-win.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ void PlatformEmbeddedFileWriterWin::Comment(const char* string) {
485485

486486
void PlatformEmbeddedFileWriterWin::DeclareLabel(const char* name) {
487487
if (target_arch_ == EmbeddedTargetArch::kArm64) {
488-
fprintf(fp_, "%s%s\t", SYMBOL_PREFIX, name);
488+
fprintf(fp_, "%s%s\n", SYMBOL_PREFIX, name);
489489

490490
} else {
491491
fprintf(fp_, "%s%s LABEL %s\n", SYMBOL_PREFIX, name,

0 commit comments

Comments
 (0)