MIPS architecture support added. Native camera library built for MIPS device.

This commit is contained in:
Alexander Smorkalov
2012-10-02 14:55:51 +04:00
parent 11367e2c3d
commit d64d76086e
4 changed files with 11 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ for s in ConfFile.readlines():
shutil.rmtree(os.path.join(AndroidTreeRoot, "out", "target", "product", "generic", "system"), ignore_errors=True)
if (Arch == "x86"):
shutil.copytree(os.path.join(AndroidTreeRoot, "bin_x86", "system"), os.path.join(AndroidTreeRoot, "out", "target", "product", "generic", "system"))
elif (Arch == "mips"):
shutil.copytree(os.path.join(AndroidTreeRoot, "bin_mips", "system"), os.path.join(AndroidTreeRoot, "out", "target", "product", "generic", "system"))
else:
shutil.copytree(os.path.join(AndroidTreeRoot, "bin_arm", "system"), os.path.join(AndroidTreeRoot, "out", "target", "product", "generic", "system"))
os.chdir(BuildDir)