Skip to content

Commit

Permalink
🐞 fix: Fixed undefined symbol _ZTIN12v8_inspector17V8InspectorClientE…
Browse files Browse the repository at this point in the history
… for Linux x86_64 (temporarily)
  • Loading branch information
caoccao committed Aug 20, 2024
1 parent becd820 commit 9851712
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/linux_x86_64_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
run: |
cd ${{ env.ROOT }}/Javet/cpp
sh ./build-linux-x86_64.sh -DV8_DIR=${{ env.ROOT }}/google/v8
sed -i 's/_ZTIN12v8_inspector17V8InspectorClientE/_ZTVN12v8_inspector17V8InspectorClientE/g' ../src/main/resources/libjavet-v8-linux-x86_64.v.${{ env.JAVET_VERSION }}.so
- name: Upload the Artifact
uses: actions/upload-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions cpp/jni/version_script.map
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Java_com_caoccao_javet_*;
napi_*;
node_*;
_*v8_inspector*V8InspectorClient*;
local:
*;
};
1 change: 1 addition & 0 deletions docs/release_notes/release_notes_3_1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Release Notes 3.1.x
* Upgraded V8 to ``v12.8.374.17`` (2024-08-19)
* Fixed a bug of the default export in ``JavetBuiltInModuleResolver``
* Adjust JS type conversion priority for better performance
* Fixed undefined symbol ``_ZTIN12v8_inspector17V8InspectorClientE`` for Linux x86_64 (temporarily)

3.1.4 V8 v12.7
--------------
Expand Down

0 comments on commit 9851712

Please sign in to comment.