Hi all,
I run a build bot which updates and builds trunk llvm on a variety of OSes once every four hours. The windows build has been broken since r246156: http://104.154.46.123:8010/builders/win-64-trunk. A full clean didn’t seem to fix it. Neither did several more recent updates (I’m currently building at 246208).
The specific error is at the end of this log:
http://104.154.46.123:8010/builders/win-64-trunk/builds/75/steps/Build%20LLVM%20Release/logs/stdio
My build procedure looks like this:
cmake
-DCMAKE_INSTALL_PREFIX=…/llvm-install
-DLLVM_ENABLE_TERMINFO=OFF
-DLLVM_TARGETS_TO_BUILD=X86;ARM;NVPTX;AArch64;Mips
-DLLVM_ENABLE_ASSERTIONS=ON
-DLLVM_BUILD_32_BITS=OFF
-DCMAKE_BUILD_TYPE=Release…/llvm/
-G ‘Visual Studio 12 Win64’
MSBuild.exe /m /t:Build /p:Configuration=“Debug” .\ALL_BUILD.vcxproj
MSBuild.exe /m /t:Build /p:Configuration=“Release” .\ALL_BUILD.vcxproj
Suggestions appreciated. All other platforms and llvm versions are currently green: http://104.154.46.123:8010/waterfall.
- Andrew