1
當我運行android目標列表時,我只看到ABIs = armeabi,如何添加一個具有ABIs = x86的android目標。請建議。使用x86創建一個Android Target作爲ABI
當我運行android目標列表時,我只看到ABIs = armeabi,如何添加一個具有ABIs = x86的android目標。請建議。使用x86創建一個Android Target作爲ABI
當你從源代碼編譯,你可以用午餐命令選擇目標:
You're building on Linux
Lunch menu... pick a combo:
1. full-eng
2. full_x86-eng
3. vbox_x86-eng
4. full_maguro-userdebug
5. full_tuna-userdebug
6. full_panda-eng
Which would you like? [full-eng]
然後選擇所需的午餐組合後,做
$ make
我的消息來源的Makefile,它不是一個NDK建造。 – sateesh12