Skip to content

Commit c7a0ab4

Browse files
ryzokukentargos
authored andcommitted
deps: patch V8 to run on older XCode versions
Patch V8 (compiler/js-heap-broker.cc) to remove the use of an optional property, which is a fairly new C++ feature, since that requires a newer XCode version than the minimum requirement in BUILDING.md and thus breaks CI. PR-URL: #32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 60b623e commit c7a0ab4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-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.1',
39+
'v8_embedder_string': '-node.2',
4040

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

deps/v8/src/compiler/js-heap-broker.cc

+1
Original file line numberDiff line numberDiff line change
@@ -4285,6 +4285,7 @@ GlobalAccessFeedback::GlobalAccessFeedback(PropertyCellRef cell,
42854285

42864286
GlobalAccessFeedback::GlobalAccessFeedback(FeedbackSlotKind slot_kind)
42874287
: ProcessedFeedback(kGlobalAccess, slot_kind),
4288+
cell_or_context_(base::nullopt),
42884289
index_and_immutable_(0 /* doesn't matter */) {
42894290
DCHECK(IsGlobalICKind(slot_kind));
42904291
}

deps/v8/src/interpreter/interpreter.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Interpreter::NewSourcePositionCollectionJob(
296296
auto job = std::make_unique<InterpreterCompilationJob>(parse_info, literal,
297297
allocator, nullptr);
298298
job->compilation_info()->SetBytecodeArray(existing_bytecode);
299-
return job;
299+
return std::unique_ptr<UnoptimizedCompilationJob> { static_cast<UnoptimizedCompilationJob*>(job.release()) };
300300
}
301301

302302
void Interpreter::ForEachBytecode(

0 commit comments

Comments
 (0)