Index: tools/build.py |
=================================================================== |
--- tools/build.py (revision 33476) |
+++ tools/build.py (working copy) |
@@ -105,7 +105,7 @@ |
print ("Cross-compilation to %s is not supported on host os %s." |
% (os, HOST_OS)) |
return False |
- if not arch in ['ia32', 'arm']: |
+ if not arch in ['ia32', 'arm', 'mips']: |
print ("Cross-compilation to %s is not supported for architecture %s." |
% (os, arch)) |
return False |
@@ -114,9 +114,6 @@ |
if args == []: |
print "For android builds you must specify a target, such as 'runtime'." |
return False |
- if 'v8' in args: |
- print "The v8 target is not supported for android builds." |
- return False |
return True |