Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-11-29 Thread 'Michael Achenbach' via v8-users
I don't know if the --ide option can be used for building V8. We don't officially support it. The stackoverflow link you provided contains also the answer we officially support: http://stackoverflow.com/a/39550343 Could you try building with ninja and see if it works for you? Of course, if you

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-11-28 Thread jan . ehrhardt
Or: D:\chromium\v8>gn gen --help | grep -A10 ide= --ide= Generate files for an IDE. Currently supported values: "eclipse" - Eclipse CDT settings file. "vs" - Visual Studio project/solution files. (default Visual Studio version: 2015) "vs2013" - Visual Studio

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-11-28 Thread jan . ehrhardt
http://stackoverflow.com/questions/38674676/building-and-linking-v8-in-visual-studio And it is in in the gn help: D:\chromium\v8>gn gen --help | grep ide gn gen [] GN optionally generates files for IDE. Possibilities for --ide= Override default sln file name ("all"). Solution file

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-11-28 Thread 'Michael Achenbach' via v8-users
Please refer to the authors of the gn --ide=vs extension. I don't know what this is supposed to be doing. V8 officially only supports building with ninja. E.g. gn gen v5.4/x64.release ninja -C v5.4/x64.release d8 -- -- v8-users mailing list v8-users@googlegroups.com

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-11-24 Thread jan . ehrhardt
Take a look at how I built V8 5.4.500.43: https://github.com/phpv8/v8js/issues/272#issuecomment-262848754 -- -- 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"

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-09-21 Thread 'Michael Achenbach' via v8-users
That'd be with set GYP_GENERATORS=msvs But I'm afraid we dropped official support for this a while back. Why not build with ninja? E.g. gyp_generator like you specified and then build with: ninja -C out\Release on x64 platforms might require: ninja -C out\Release_x64 On Wednesday, September

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-09-21 Thread Pieter
Thanks for the reply Jochen, How do I specify the msvs gyp generator? On Wednesday, 21 September 2016 10:54:39 UTC+2, Jochen Eisinger wrote: > > If you want to build with MSVS, you need the msvs gyp generator. > msvs-ninja only supports browsing the project, not building it > > On Tue, Sep 20,

Re: [v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-09-21 Thread Jochen Eisinger
If you want to build with MSVS, you need the msvs gyp generator. msvs-ninja only supports browsing the project, not building it On Tue, Sep 20, 2016 at 10:04 AM Pieter wrote: > > I have been struggling for a couple of days to get the correct > incantations to get a

[v8-users] Building v8 with Visual Studio 2015 on Windows 10

2016-09-20 Thread Pieter
I have been struggling for a couple of days to get the correct incantations to get a build of v8 working on windows 10 with visual studio 2015. In short the steps that i've been attempting are as follows - set DEPOT_TOOLS_WIN_TOOLCHAIN=0 - set GYP_MSVS_VERSION=2015 - set