Skip to content

Commit 97eb14f

Browse files
Use shared C++ STL
1 parent c96868c commit 97eb14f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/conan/profiles/android-21-armv7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build_type=RelWithDebInfo
1919
compiler=clang
2020
compiler.version=17
2121
compiler.cppstd=20
22-
compiler.libcxx=c++_static
22+
compiler.libcxx=c++_shared
2323

2424
[conf]
2525
tools.android:ndk_path={{android_home}}/ndk/{{ndk_version}}

.github/conan/profiles/android-21-armv8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build_type=RelWithDebInfo
1919
compiler=clang
2020
compiler.version=17
2121
compiler.cppstd=20
22-
compiler.libcxx=c++_static
22+
compiler.libcxx=c++_shared
2323

2424
[conf]
2525
tools.android:ndk_path={{android_home}}/ndk/{{ndk_version}}

.github/conan/profiles/android-21-x86

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build_type=RelWithDebInfo
1919
compiler=clang
2020
compiler.version=17
2121
compiler.cppstd=20
22-
compiler.libcxx=c++_static
22+
compiler.libcxx=c++_shared
2323

2424
[conf]
2525
tools.android:ndk_path={{android_home}}/ndk/{{ndk_version}}

.github/conan/profiles/android-21-x86_64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build_type=RelWithDebInfo
1919
compiler=clang
2020
compiler.version=17
2121
compiler.cppstd=20
22-
compiler.libcxx=c++_static
22+
compiler.libcxx=c++_shared
2323

2424
[conf]
2525
tools.android:ndk_path={{android_home}}/ndk/{{ndk_version}}

pdf2htmlEX/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ android {
4747
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
4848

4949
externalNativeBuild.cmake.arguments(
50-
'-DANDROID_STL=c++_static',
50+
'-DANDROID_STL=c++_shared',
5151
"-DCMAKE_TOOLCHAIN_FILE=build/conan/android_toolchain.cmake",
5252
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
5353
)

0 commit comments

Comments
 (0)