--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
set GYP_MSVS_VERSION=2010
gclient runhooks
msbuild chrome\chrome.vcxproj /p:Configuration=Release
had fairly fast startup if I remember correctly.
Nico
How long does it take to get the build started when you do it from inside of Visual Studio? The startup is slow for me either way.
msbuild chrome\chrome.vcxproj /p:Configuration=Release
The key here is getting to VisualStudio 2010. In VisualStudio 2010, MSBuild is used, and in a way that keeps a couple of instances open and cached. Repeated command line builds w/ VS2010 will be faster than from the IDE.
On Tue, Feb 28, 2012 at 17:54, Scott Byer <scot...@chromium.org> wrote:The key here is getting to VisualStudio 2010. In VisualStudio 2010, MSBuild is used, and in a way that keeps a couple of instances open and cached. Repeated command line builds w/ VS2010 will be faster than from the IDE.As I recall, MSBuild could be used pre-VS2010. Is the caching you describe VS2010 dependent or would using MSBuild in general give some benefits?
You can specify a solution file and /m for parallel build:msbuild chrome\chrome.vcxproj /p:Configuration=Releasemsbuild chrome\chrome.sln /p:Configuration=Release /mI'm using some.gyp to generate some.sln that includes only the targets that I need to build. Works pretty well.
Am I using the wrong msbuild perhaps? I added c:\windows\microsoft.net\framework64\v4.0.30319 to my path.