I'm on Windows 64bit - using Visual Studio Community 2017
I'm trying to embed JavaScript into my C++ application.

But I keep running into this problem: (cmd.exe Windows Command Prompt)

> C:\v8>cd depot_tools
>
>
>> C:\v8\depot_tools>gclient
>
> Usage: gclient.py <command> [options]
>
>
>> Meta checkout dependency manager for Git.
>
>
>> Commands are:
>
>   config   creates a .gclient file in the current directory
>
>   diff     displays local diff for every dependencies
>
>   fetch    fetches upstream commits for all modules
>
>   flatten  flattens the solutions into a single DEPS file
>
>   grep     greps through git repos managed by gclient
>
>   help     prints list of commands or help for a specific command
>
>   pack     generates a patch which can be applied at the root of the tree
>
>   recurse  operates [command args ...] on all the dependencies
>
>   revert   reverts all modifications in every dependencies
>
>   revinfo  outputs revision info mapping for the client and its 
>> dependencies
>
>   root     outputs the solution root (or current dir if there isn't one)
>
>   runhooks runs hooks for files that have been modified in the local 
>> working copy
>
>   status   shows modification status for every dependencies
>
>   sync     checkout/update all modules
>
>   validate validates the .gclient and DEPS syntax
>
>   verify   verifies the DEPS file deps are only from allowed_hosts
>
>
>> Options:
>
>   --version             show program's version number and exit
>
>   -h, --help            show this help message and exit
>
>   -j JOBS, --jobs=JOBS  Specify how many SCM commands can run in parallel;
>
>                         defaults to 8 on this machine
>
>   -v, --verbose         Produces additional output for diagnostics. Can be
>
>                         used up to three times for more logging info.
>
>   --gclientfile=CONFIG_FILENAME
>
>                         Specify an alternate .gclient file
>
>   --spec=SPEC           create a gclient file containing the provided 
>> string.
>
>                         Due to Cygwin/Python brokenness, it can't contain 
>> any
>
>                         newlines.
>
>   --cache-dir=CACHE_DIR
>
>                         (git only) Cache all git repos into this dir and do
>
>                         shared clones from the cache, instead of cloning
>
>                         directly from the remote. (experimental)
>
>   --no-nag-max          Ignored for backwards compatibility.
>
> C:\v8\depot_tools>gclient --version
>
> gclient.py 0.7
>
> C:\v8\depot_tools>cd ..
>
>
>> C:\v8>where python
>
> C:\v8\depot_tools\python.bat
>
>
>> C:\v8>fetch v8
>
> Running: 'C:\v8\depot_tools\win_tools-2_7_6_bin\python\bin\python.exe' 
>> 'C:\v8\depot_tools\gclient.py' root
>
> Running: 'C:\v8\depot_tools\win_tools-2_7_6_bin\python\bin\python.exe' 
>> 'C:\v8\depot_tools\gclient.py' config --spec 'solutions = [
>
>   {
>
>     "url": "https://chromium.googlesource.com/v8/v8.git";,
>
>     "managed": False,
>
>     "name": "v8",
>
>     "deps_file": "DEPS",
>
>     "custom_deps": {},
>
>   },
>
> ]
>
> '
>
> Running: 'C:\v8\depot_tools\win_tools-2_7_6_bin\python\bin\python.exe' 
>> 'C:\v8\depot_tools\gclient.py' sync --with_branch_heads
>
> Error: Command 
>> 'C:\\v8\\depot_tools\\win_tools-2_7_6_bin\\python\\bin\\python.exe 
>> v8/tools/clang/scripts/update.py' returned non-zero exit status 1 in C:\v8
>
> Traceback (most recent call last):
>
>   File "C:\v8\depot_tools\\fetch.py", line 301, in <module>
>
>     sys.exit(main())
>
>   File "C:\v8\depot_tools\\fetch.py", line 296, in main
>
>     return run(options, spec, root)
>
>   File "C:\v8\depot_tools\\fetch.py", line 290, in run
>
>     return checkout.init()
>
>   File "C:\v8\depot_tools\\fetch.py", line 133, in init
>
>     self.run_gclient(*sync_cmd)
>
>   File "C:\v8\depot_tools\\fetch.py", line 78, in run_gclient
>
>     return self.run(cmd_prefix + cmd, **kwargs)
>
>   File "C:\v8\depot_tools\\fetch.py", line 68, in run
>
>     return subprocess.check_output(cmd, **kwargs)
>
>   File 
>> "C:\v8\depot_tools\win_tools-2_7_6_bin\python\bin\lib\subprocess.py", line 
>> 573, in check_output
>
>     raise CalledProcessError(retcode, cmd, output=output)
>
> subprocess.CalledProcessError: Command 
>> '('C:\\v8\\depot_tools\\win_tools-2_7_6_bin\\python\\bin\\python.exe', 
>> 'C:\\v8\\depot_tools\\gclient.py', 'sync', '--with_branch_heads')' returned 
>> non-zero exit status 2
>
> C:\v8>
>
>

-- 
-- 
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