[openssl-users] Build OpenSSL for Android in MAC

2018-02-05 Thread Κωνσταντίνος Νούλης
Hello all, I would like to compile openssl (libcrypto and libssl) and use it within my android app as an external library with NDK. My development machine is a MAC. I have read the instructions in the wiki, but apparently they are for an older version of openssl and linux systems. Is there a newe

Re: build openssl for android

2013-08-26 Thread tera
Dear Indu, I have the exact same problem/error of the libz. How did you solve it? Can anybody share your method? Thanks a ton, -Tera -- View this message in context: http://openssl.6102.n7.nabble.com/build-openssl-for-android-tp26315p46332.html Sent from the OpenSSL - User mailing list

Re: build openssl for android

2012-09-13 Thread Indtiny s
Hi, adding more to my previous problem reference post : That library is there in the ndk floder /home/indu/Android/android-ndk-r8b/platforms/android-9/arch-x86/usr/lib/libz.a /home/indu/Android/android-ndk-r8b/platforms/android-9/arch-x86/usr/lib/libz.so /home/indu/Android/android-ndk-r8b//platfo

Re: build openssl for android

2012-09-12 Thread Indtiny s
Hi, When I complied my old code (openssl-android 1.0.0e) which downloaded from the github , ir built properly .. but this new code from the https://github.com/aluvalassuman/OpenSSL1.0.1cForAndroid is throwing the zlib not found error .. I ran everything through $ sudo ndk-build script only . Is

Re: build openssl for android

2012-09-12 Thread terr
I don't at this point own an android and I am thinking of getting one. I'd like to ask of the environment. Will I need to root it? I expect the answer is yes and I'll have to install all the development tools as well. Its there a website which provides instructions. Next what of cross comp

Re: build openssl for android

2012-09-12 Thread Indtiny s
Hi, My android for the TAB is HoneyComb and its API level is 12 so I have wriiten it as TARGET_ABI:=android-12-armeabi I put the above line in android-config.mk just below the first LOCAL_CFLAGS and excuted the ndk-build but I got the following error . linux-androideabi/bin/ld: warning: libz.so,

Re: build openssl for android

2012-09-12 Thread farmdve data.bg
Oh, and I highly suggest specifying the TARGET_ABI so that the code is optimized(considerable boost compared to without specifying it). So either add TARGET_ABI := android-APILEVEL-armeabi to android-config.mkOR open Android.mk in the crypto and ssl folders, and add it just before $(BUILD_SHARED_L

Re: build openssl for android

2012-09-12 Thread farmdve data.bg
Do not use that one, it's old. Use this one https://github.com/aluvalassuman/OpenSSL1.0.1cForAndroid Just calling ndk-build should work. On Wed, Sep 12, 2012 at 8:34 PM, Jason Goldberg wrote: > For Android, check out this project as an example: > > https://github.com/eighthave/openssl-android

Re: build openssl for android

2012-09-12 Thread Jason Goldberg
For Android, check out this project as an example: https://github.com/eighthave/openssl-android They have the Android-specific Makefile configs for doing an NDK build. You could patch it with your changes and generate the .so libraries you need. On Sep 12, 2012, at 12:05 PM, Indtiny s mailto:

build openssl for android

2012-09-12 Thread Indtiny s
Hi, I have to build the openssl 1.0.1c for the android , I have added new ECC-CCM chiper key support at the openssl , hence i want build the same for android-ndk and use in my application as shared libraries . is there any guide to build the same ..? Rgds Indu