Post Reply 
 
Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
port for intel x86 android phones??
09-25-2013, 03:06 AM
Post: #76
RE: port for intel x86 android phones??
(09-24-2013 04:43 PM)ddsdadashi Wrote:  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?

contact me if anyone would like to help me upload the compiled apk to dropbox, which is inaccessable from where i am.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: port for intel x86 android phones?? - ddsdadashi - 09-25-2013 03:06 AM

Forum Jump: