将 C 代码 (netcat) 编译为本机 Android 可执行文件
我正在编写一个 bash 脚本,它使用 Netcat 通过网络连接提供帧缓冲区,但首先我需要将其编译为本机可执行文件。我什至让这个脚本在默认安装了 netcat 的 Ubuntu 机器上运行。
我发现了这个 https://github.com/android/platform_external_netcat 但根本没有 NDK 经验。显然,这根本不使用 JNI 或 Java,因此制作 Android 应用程序的默认方法不会让我有任何进展。
所以问题是。如何从该源代码中获取可执行文件?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果其他人想知道,这来自 NDK 文档:
更具体地说,对于来自 https://github 的 netcat。 com/android/platform_external_netcat
根据需要替换 SYSROOT 和 CC 中的路径。
If anybody else wants to know, this is from the NDK documentation:
More specifically, for the netcat from https://github.com/android/platform_external_netcat
Replace the paths from SYSROOT and CC as appropriate.
查看 docs/STANDALONE-TOOLCHAIN.html 下的 Android sdk,它描述了如何使用 ndk 作为可以生成 Arm 二进制文件的独立编译器。
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.