gustavogenovese / curl-android-ios

Static libcurl to be used in Android and iOS apps. Build scripts included. No Android source required
641 stars 255 forks source link

how to merge multiple libcurl.a into single static library #24

Closed ibaoger closed 8 years ago

ibaoger commented 8 years ago

how to merge follow libcurl.a file to only one libcurl.a file? armeabi/libcurl.a armeabi-v7a/libcurl.a ...

gustavogenovese commented 8 years ago

The .a files must be split in separate directories. You could, though, omit some of them (armeabi will work on v7a and in arm64; mips will work on mips64, x86 will work on x86_64) if you want to use less space.

ibaoger commented 8 years ago

OK, thanks.