Skip to content

Commit

Permalink
fix: Build and link to v8_heap_base and v8_heap_base_headers
Browse files Browse the repository at this point in the history
Not sure if this affects anything but those two static libraries are
checked in to the branch, so we should probably be linking to them.
  • Loading branch information
ptomato committed Mar 20, 2023
1 parent 241bba4 commit 3ebd066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build_v8_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
pushd v8

ARCH_ARR=(x64-simulator arm64-simulator arm64-device)
MODULES=(v8_base_without_compiler v8_compiler v8_libplatform v8_libbase v8_bigint v8_snapshot torque_generated_initializers torque_generated_definitions)
MODULES=(v8_base_without_compiler v8_compiler v8_libplatform v8_libbase v8_bigint v8_snapshot v8_heap_base v8_heap_base_headers torque_generated_initializers torque_generated_definitions)

for CURRENT_ARCH in ${ARCH_ARR[@]}
do
Expand Down
2 changes: 2 additions & 0 deletions v8ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2670,6 +2670,7 @@
"-ltorque_generated_initializers",
"-ltorque_generated_definitions",
"-lv8_heap_base",
"-lv8_heap_base_headers",
"-linspector_protocol",
"-linspector",
"-linspector_string_conversions",
Expand Down Expand Up @@ -2748,6 +2749,7 @@
"-ltorque_generated_initializers",
"-ltorque_generated_definitions",
"-lv8_heap_base",
"-lv8_heap_base_headers",
"-linspector_protocol",
"-linspector",
"-linspector_string_conversions",
Expand Down

0 comments on commit 3ebd066

Please sign in to comment.