使用 NDK 编译可执行文件,即 Android.mk 文件应该是编译 target 应该是 BUILD_EXECUTABLE
include $(BUILD_EXECUTABLE)
假设,编出的目标为 helloworld
1. 将 helloworld push 到手机的 /sdcard 目录下
2. 执行 adb shell
3. 将 /sdcard/helloworld 拷贝到 /data/local/tmp
4. 进入到 /data/local/tmp 目录下,并执行 chmod 777 helloworld
5. 执行 helloworld,即 ./helloworld
简而言之,就是这个样子:
jerikc$ adb push helloworld /sdcard/ jerikc$ adb shell [email protected]:/ $ cp sdcard/helloworld /data/local/tmp/ [email protected]:/ $ cd /data/local/tmp/ [email protected]:/data/local/tmp $ chmod 777 helloworld [email protected]:/data/local/tmp $ ./helloworld
时间: 2024-10-11 06:07:11