Android編譯本地C++程序方法
在Android平臺上程序以Java形式運行在Dalvik模擬器上,但Android作為一個Linux內核系統完全可以執(zhí)行Navtive C++程序,主要的步驟如下:
本文引用地址:http://cafeforensic.com/article/201610/305794.htm1.下載ARM C++交叉編譯器http://www.codesourcery.com/gnu_toolchains/arm/portal/subscription3057
2.編寫本地C++代碼,如Hello Wolrd,可以使用標準庫STL。編譯的命令行如下
arm-none-linux-gnueabi-g++.exe -static -oandroid123 android123.cpp
首先運行arm-none-linux-gnueabi-g++.exe程序-static 參數代表靜態(tài)庫,-o為輸出名稱android123,最后的android123.cpp為源代碼。
3.運行模擬器,用cmd在sdkTools目錄夏之星 adb pushandroid123 /system/sbin/android123
4.設置訪問權限,通過Linux的Shell,在cmd下設置所有用戶完全控制權限adb shell chmod 777 /system/sbin/android123
5.執(zhí)行這個android123程序,輸入adb shell cd /system/sbin/android123即可
評論