On Thu, Feb 20, 2014 at 7:51 PM, Jane Chen <[email protected]> wrote: > Jacob, > > Thanks for your reply. > > My Python version is 2.6.1: > Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) > [GCC 4.2.1 (Apple Inc. build 5646)] on darwin > > I just tried with the following (removing shared library and i18nsupport) > which got me further but eventually still got the same error: > > make -j8 x64.debug werror=no i18nsupport=off > ..... > > CXX(target) > /space/v8/out/x64.debug/obj.target/v8_nosnapshot.x64/gen/trig-table.o > CXX(target) > /space/v8/out/x64.debug/obj.target/v8_nosnapshot.x64/src/snapshot-empty.o > LIBTOOL-STATIC /space/v8/out/x64.debug/libv8_base.x64.a > > File "./gyp-mac-tool", line 507 > return {k: self._ExpandVariables(data[k], substitutions) for k in data} > ^ > SyntaxError: invalid syntax > make[1]: *** [/space/v8/out/x64.debug/libv8_base.x64.a] Error 1 > > Jane
gyp-mac-tool is a python script with `#!/usr/bin/env python` as its shebang. Make sure the default python is 2.[67] because I suspect it's picking up the wrong version now. -- -- 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.
