Closed juha-h closed 3 years ago
When I run ndk-pkg install abseil only dynamic (.so) libraries are build. How can I get also static (.a) libraries built?
ndk-pkg install abseil
step1. edit the formula of abseil package
abseil
ndk-pkg formula edit abseil
step2. add the following code
-DBUILD_SHARED_LIBS=OFF
step3. rebuild it
ndk-build install abseil
Thanks.
When I run
ndk-pkg install abseil
only dynamic (.so) libraries are build. How can I get also static (.a) libraries built?