【NDK系列】使用ndk-build构建可在Android设备运行的ELF可执行文件

背景

通常在安卓开发过程中涉及到的NDK开发产物都是以JNI+so文件为主的library(库文件),包括谷歌官网给出的示例也是演示了如何开发一个JNI库。本文则是介绍如何利用NDK开发一个最简单的可以在Android设备运行的可执行程序。

开发步骤

创建以下目录结构的项目工程:

复制代码
exec_demo
		├── jni
		   ├── Android.mk
		   └── main.cpp

其中Android.mk中的内容如下:

复制代码
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := helloworld
LOCAL_SRC_FILES := main.cpp
include $(BUILD_EXECUTABLE)

Android.mk相关代码可以从官网demo获取。

main.cpp内容如下:

cpp 复制代码
#include <jni.h>
#include <stdio.h>

int main(int argc, char const *argv[])
{
    printf("hello world from %d, %s\n", argc, argv[0]);
    return 0;
}

执行编译,生成可执行文件

bash 复制代码
cd exec_demo
ndk-build

编译完成可以在libs/arm64-v8a目录下找到helloworld可执行文件,查看该文件信息如下:

bash 复制代码
cd libs/arm64-v8a
file helloworld

输出结果如下:

复制代码
helloworld: ELF 64-bit LSB pie executable, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /system/bin/linker64, BuildID[sha1]=9046a35e13dc3a13a1de6a0dc8007456de28aa66, stripped

测试效果

先推送可执行文件到/data/local/tmp目录下:

bash 复制代码
adb push ./helloworld data/local/tmp

授予文件可执行权限:

bash 复制代码
adb shell 
cd data/local/tmp
chmod +x ./helloworld

执行文件查看日志:

bash 复制代码
# 无参执行
127|mayfly:/data/local/tmp $ ./helloworld
hello world from 1, ./helloworld
# 输入多个参数
mayfly:/data/local/tmp $ ./helloworld 1 2 3 4
hello world from 5, ./helloworld

参考资料

相关推荐
张风捷特烈19 分钟前
Flutter 伪 3D 绘制#02 | 地平面与透视
android·flutter
每次的天空25 分钟前
Kotlin 作用域函数:apply、let、run、with、also
android·开发语言·kotlin
重生之我在写代码30 分钟前
如何进行apk反编译
android·程序员·编译器
树豪33 分钟前
跟着官网学 Lynx 之 搭建 Lynx todo-list app
android·前端
孙同学_40 分钟前
【Linux篇】自主Shell命令行解释器
android·linux
Taichi呀1 小时前
PHP语言基础
android·开发语言·php
A__tao1 小时前
SQL 转 PHP Eloquent、Doctrine ORM, 支持多数据库
android·ide·android studio
CYRUS_STUDIO2 小时前
Frida Hook Android Native 函数
android·c语言·逆向
恋猫de小郭2 小时前
Flutter Roadmap 2025 发布,快来看看有什么更新吧
android·前端·flutter
QING6182 小时前
Kotlin containsAll用法及代码示例
android·kotlin·源码阅读