Reputation: 241
I am new to NDK, Now I want to build curl with NDK 10rd in windows 7. I download curl's code at[https://github.com/bagder/curl].
I have tried and searched many ways. But It does not work.
The error info is :
E:/study/thrid_lib/curl-master//jni/src/setup.h:41:25: fatal error: curl_config.h: No such file or directory
#include "curl_config.h"
INFO: My curl 's path is "E:/study/thrid_lib/curl-master/jni". Using cmd into this path and typing "ndk-build",then error will appear.
At last, thanks.
Upvotes: 0
Views: 2131
Reputation: 241
I have solved this problem.The details are below:
That 's all. If you have anythings confused, feel free to contact me.
Upvotes: 2
Reputation: 57193
The instructions explain how to cross-compile curl with a standalone toolchain.
As in many similar cases, you may find it easier to launch Linux in a VirtualBox and compile the library there, rather than to struggle with cygwin or mingw.
Upvotes: 0