程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> mac下配置NDK開發環境

mac下配置NDK開發環境

編輯:關於PHP編程

本文參考了別人的文章,詳細步驟:

一、啟動終端Terminal

二、輸入  pico .bash_profile  回車。

三、輸入以下內容【路徑依實情而定】:

[php]
export ANDROID_SDK_ROOT=/Users/apple/Desktop/adt-bundle/sdk 
export ANDROID_NDK_ROOT=/Users/apple/Documents/Android/android-ndk-r8e 
export PATH=$PATH:$ANDROID_SDK_ROOT 
export PATH=$PATH:$ANDROID_NDK_ROOT 
export ANDROID_TOOL=/Users/apple/Desktop/adt-bundle/sdk/platform-tools 
export PAHT=$PATH:$ANDROID_TOOL 

export ANDROID_SDK_ROOT=/Users/apple/Desktop/adt-bundle/sdk
export ANDROID_NDK_ROOT=/Users/apple/Documents/Android/android-ndk-r8e
export PATH=$PATH:$ANDROID_SDK_ROOT
export PATH=$PATH:$ANDROID_NDK_ROOT
export ANDROID_TOOL=/Users/apple/Desktop/adt-bundle/sdk/platform-tools
export PAHT=$PATH:$ANDROID_TOOL

 

四、 注意路徑最好不要有空格!輸入完成之後,Control+x  進行保存,然後提示是否保存,輸入 y  ,最後回車即可!


五、檢驗路徑步驟:關閉你的“終端”,重新打開,如果之前路徑配置有問題,那麼重新打開的“終端”將出現如下提示:-bash: exoort: command not found    如果沒有此類提示,OK說明路徑配置完成!

六、輸入ndk-build,有反應說明配置路徑成功。

七、cd 到要編譯的項目內,ndk-build,編譯成功。OK,搞定之。


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved