From 8a5d3587fb792d87a63da80622df5265f64fb7e7 Mon Sep 17 00:00:00 2001 From: Sam Cao Date: Tue, 20 Aug 2024 15:40:08 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Revert=20temporarily=20fi?= =?UTF-8?q?x=20undefined=20symbol=20``=5FZTIN12v8=5Finspector17V8Inspector?= =?UTF-8?q?ClientE``=20for=20Linux=20x86=5F64?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linux_x86_64_build.yml | 1 - cpp/jni/version_script.map | 1 - docs/release_notes/release_notes_3_1.rst | 1 - 3 files changed, 3 deletions(-) diff --git a/.github/workflows/linux_x86_64_build.yml b/.github/workflows/linux_x86_64_build.yml index 6e29984c4..22017d3ef 100644 --- a/.github/workflows/linux_x86_64_build.yml +++ b/.github/workflows/linux_x86_64_build.yml @@ -72,7 +72,6 @@ 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 diff --git a/cpp/jni/version_script.map b/cpp/jni/version_script.map index 7d67d3831..59167329e 100644 --- a/cpp/jni/version_script.map +++ b/cpp/jni/version_script.map @@ -5,7 +5,6 @@ Java_com_caoccao_javet_*; napi_*; node_*; - _*v8_inspector*V8InspectorClient*; local: *; }; diff --git a/docs/release_notes/release_notes_3_1.rst b/docs/release_notes/release_notes_3_1.rst index caff5ab9f..39156e52f 100644 --- a/docs/release_notes/release_notes_3_1.rst +++ b/docs/release_notes/release_notes_3_1.rst @@ -9,7 +9,6 @@ Release Notes 3.1.x * Upgraded Android NDK to r27 * 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 --------------