We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df4575a commit 04f6b05Copy full SHA for 04f6b05
.github/workflows/main.yml
@@ -118,14 +118,16 @@ jobs:
118
export TOOLCHAIN=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64
119
export ARCH=${{ matrix.arch }}
120
export PATH=$TOOLCHAIN/bin:$PATH
121
+ TARGET=android-${{ matrix.arch == 'arm64-v8a' && 'arm64' || matrix.arch }}
122
- ./Configure android-${{ matrix.arch == 'arm64-v8a' && 'arm64' || matrix.arch }} \
123
+ ./Configure $TARGET \
124
--prefix=$PWD/build \
125
--openssldir=$PWD/build/ssl \
126
no-shared \
127
no-unit-test \
128
-D__ANDROID_API__=26
129
make
130
+ make install_sw
131
132
cp build/lib/libssl.a $TOOLCHAIN/sysroot/usr/lib/
133
cp build/lib/libcrypto.a $TOOLCHAIN/sysroot/usr/lib/
0 commit comments