I'm writing a bash script that uses Netcat to serve framebuffer over network connection, but first I need to compile it to native executable. I even got this script to work on a Ubuntu machine, where netcat is installed by default.

I found this https://github.com/android/platform_external_netcat but have no experience in NDK at all. This obviously doesn't use JNI or Java at all so default approach for making Android applications won't get me anywhere.

So the question is. How do I get an executable file from this source code?

link|improve this question
possible duplicate of Looking for a good tutorial on Android NDK – Bo Persson May 29 '11 at 14:35
not really. I want to get an ARM executable. Not .apk package. – Piotrek Okoński May 29 '11 at 14:44
There is proably already a compiled copy of netcat (nc) on the device. – Chris Stratton May 29 '11 at 14:47
Weirdly enough, no. That was the first thing I tried. I have ping by default on my 2.3.3 Galaxy S, but not netcat. – Piotrek Okoński May 29 '11 at 14:50
If you have a /system/xbin directory it may be in there, and not on your path – Chris Stratton May 29 '11 at 16:22
feedback

1 Answer

up vote 1 down vote accepted

Look in the Android sdk under docs/STANDALONE-TOOLCHAIN.html it describes how to use the ndk as standalone compiler which can produce arm binaries.

link|improve this answer
That's pretty much it, thanks ;) Also as I found out just now, BusyBox has, among others, netcat inside ;) – Piotrek Okoński May 29 '11 at 15:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.