port for intel x86 android phones??
|
09-24-2013, 04:43 PM
(This post was last modified: 09-24-2013 05:03 PM by ddsdadashi.)
Post: #75
|
|||
|
|||
RE: port for intel x86 android phones??
trying to build with icc:
I'm not familiar with android, but I managed to build ppsspp with icc for android. the startup guide of icc can be found here: http://software.intel.com/sites/products...tarted.htm so I just type how i build ppsspp with it. 1. modify the build.xml and custom_rules.xml because i'm using ant. the build.xml missed a env variable for ndk, so add: <property environment="env" /> <condition property="sdk.dir" value="${env.ANDROID_HOME}"> <isset property="env.ANDROID_HOME" /> </condition> <condition property="ndk.dir" value="${env.NDK}"> <isset property="env.NDK" /> </condition> in file custom_rules.xml: <property name="ndkbuildopt" value=" V=1 -B NDK_TOOLCHAIN=icc APP_ABI=x86 APP_OPTIM:=release TARGET_PLATFORM:=android-14 LOCAL_LDFLAGS:=-static-intel"/> 2.modify the project.properties change target=android-10 to android-14 because x86 are not supported in android 10 then type ant instrument, wait for job finished. there are compiler warnings, but can be ignored safely, or you should edit the android.mk to remove the unsupported args. the compilation gives me a startable apk, but not functional(complains about "Could not find executable disc0:/PSP_GAME/SYSDIR/BOOT.BIN"). so if anyone can help do some debug work? http://u.163.com/wEtneNPc (can only be downloaded for 20 times.) |
|||
« Next Oldest | Next Newest »
|