On Thu, Jan 16, 2014 at 11:16 AM, Александр Квашнин < [email protected]> wrote:
> [...]t > File "build/gyp/gyp_main.py", line 12 > except ImportError, e: > ^ > SyntaxError: invalid syntax > make: *** [out/Makefile.native] Error 1 > > What's wrong? > That's a Python 2 vs. Python 3 incompatibility: http://docs.python.org/3/howto/pyporting.html#capturing-the-currently-raised-exception Using Python 2.6 or 2.7 should be fine, these are the versions we use for testing and building. Another option is editing the Python code as suggested in the porting guide. You can submit a bug report to the GYP project, we only pull that stuff into the v8 tree during "make dependencies". -- -- v8-users mailing list [email protected] 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 [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
