Apologies for the necro post, but I ran into the same issue today when 
attempting to write a docker image for building v8. The error in question:

Traceback (most recent call last):
  File "../../tools/run.py", line 12, in <module>
    sys.exit(subprocess.call(sys.argv[1:]))
  File "/usr/lib/python2.7/subprocess.py", line 168, in call
    return Popen(*popenargs, **kwargs).wait()
  File "/usr/lib/python2.7/subprocess.py", line 390, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1024, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory
[2/1344] python ../../tools/run.py 
./clang_x86_v8_arm/bytecode_builtins_list_generator 
gen/builtins-generated/bytecodes-builtins-list.h

After poking around, it turns out that 
./clang_x86_v8_arm/bytecode_builtins_list_generator was a 32-bit binary and 
the docker container didn't have the right dependencies for running a 
32-bit binary on a 64-bit machine.

After installing the right dependency (gcc-multilib on Ubuntu), I was able 
to get past this error and successfully build v8 for armeabi-v7a on android.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to