indra
indra

Reputation: 832

libcurl with android source build

I need to build the libcurl for using android ndk-build , as tried the steps provided in the link porting libcurl on android with ssl support

Here they suggested to compile the source code of the androidi as given in the first step . is it necessary to compile the android source code or just compiling the curl code is sufficient ? if so pls give the proper link ..

Upvotes: 0

Views: 2975

Answers (2)

Josh
Josh

Reputation: 6383

I compiled just the code, the one I got from here:https://github.com/gcesarmza/curl-android-ios then I installed NDK to eclipse and added NDK support to the project.

Upvotes: 1

Daniel Stenberg
Daniel Stenberg

Reputation: 58134

The "build all" approach is described in the Android.mk file in the curl distribution. The other methods are described in the docs/INSTALL file from the same place.

Upvotes: 1

Related Questions