I setup a new laptop today with Windows 8, VS 2010 Ultimate and all the other requirements to build Chromium. I used the following .gclient file to checkout Chromium last night:
solutions = [
{ "name" : "src",
"custom_deps" : {
"src/content/test/data/layout_tests/LayoutTests": None,
"src/chrome_frame/tools/test/reference_build/chrome_win": None,
"src/chrome/test/data/perf/canvas_bench": None,
"src/chrome/test/data/perf/frame_rate/content": None,
"src/chrome/tools/test/reference_build/chrome_mac": None,
"src/chrome/tools/test/reference_build/chrome_win": None,
"src/chrome/tools/test/reference_build/chrome_linux": None,
"src/third_party/hunspell_dictionaries": None,
},
}
]
Now, every time I am building Chromium, I am getting a MSB6006 error with code 53. This is happening in the generate_files project in yasm and in turn causing other projects to fail. Below is the error message:
1>------ Build started: Project: generate_files, Configuration: Debug Win32 ------
1>Build started 5/18/2013 5:02:05 PM.
1>InitializeBuildStatus:
1> Touching "..\..\build\Debug\obj\generate_files\generate_files.unsuccessfulbuild".
1>CustomBuild:
1> Running source/patched-yasm/modules/arch/x86/gen_x86_insn.py.
1> Generating yasm version file: ..\..\build\Debug\obj/global_intermediate/third_party/yasm/version.mac.
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 53.
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:02.02
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Any idea what is causing this? The Chromium checkout I have from 3-4 days back on a different computer is working perfectly. I see that the waterfall is showing red but my checkout should be the last green stable version I think.
Any help will be greatly appreciated! Thanks.