search for: zero_check

Displaying 9 results from an estimated 9 matches for "zero_check".

2018 Sep 21
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
...   MCJIT    Support    nativecodegen    IRReader # <-- new    ) and then build the Fibonacci example but the build will fail with this log - even git revert on the llvm root does not get me back to an buildable state, i tried to build the Fibonacci project and the solution the projects ZERO_CHECK and Fibonacci giving these errors Severity    Code    Description    Project    File    Line Suppression State Error    MSB6006    "cmd.exe" exited with code -1073741819. ZERO_CHECK    C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCom...
2010 Jul 21
1
[LLVMdev] Is there a guide to LLVM's components?
...ot;lib\Analysis\IPA\LLVMipa.vcproj" LLVMipo, "lib\Transforms\IPO\LLVMipo.vcproj" ModuleMaker, "examples\ModuleMaker\ModuleMaker.vcproj" X86CodeGenTable_gen, "lib\Target\X86\X86CodeGenTable_gen.vcproj" ZERO_CHECK, ".\ZERO_CHECK.vcproj" bugpoint, "tools\bugpoint\bugpoint.vcproj" check, "test\check.vcproj" count, "utils\count\count.vcproj" intrinsics_gen, "include\llvm\intrinsics_gen.vcproj"...
2018 May 17
1
Windows build strangeness
It looks like building ZERO_CHECK first to reconstruct the project files as needed, then running msbuild a second time to do the actual build, has solved the problem. At least, last night's run didn't take the usual two tries. Running msbuild twice is a little bit simpler than running cmake explicitly, the way I have my s...
2018 May 16
2
Windows build strangeness
...18 21:26 To: Reid Kleckner <rnk at google.com> Cc: llvm-dev <llvm-dev at lists.llvm.org>; Valentin Churavy <v.churavy at gmail.com> Subject: Re: [llvm-dev] Windows build strangeness msbuild is is able to re-run cmake if a CMakeLists.txt changes. CMake adds a special project "ZERO_CHECK" that does this. However, I am not sure it runs when invoking on the individual projects instead of the solution. Try the cmake --build command, which should output the following: > cmake --build . --target opt CMake is re-running because C:/Users/Meinersbur/build/llvm/vc15_debug_x86/tool...
2018 May 17
0
Windows build strangeness
...;rnk at google.com> > Cc: llvm-dev <llvm-dev at lists.llvm.org>; Valentin Churavy < > v.churavy at gmail.com> > Subject: Re: [llvm-dev] Windows build strangeness > > msbuild is is able to re-run cmake if a CMakeLists.txt changes. CMake adds > a special project "ZERO_CHECK" that does this. However, I am not sure it > runs when invoking on the individual projects instead of the solution. > > Try the cmake --build command, which should output the following: > > > cmake --build . --target opt > CMake is re-running because > C:/Users/Meinersb...
2010 Jul 22
2
[LLVMdev] Is there a guide to LLVM's components?
...ot;lib\Analysis\IPA\LLVMipa.vcproj" LLVMipo, "lib\Transforms\IPO\LLVMipo.vcproj" ModuleMaker, "examples\ModuleMaker\ModuleMaker.vcproj" X86CodeGenTable_gen, "lib\Target\X86\X86CodeGenTable_gen.vcproj" ZERO_CHECK, ".\ZERO_CHECK.vcproj" bugpoint, "tools\bugpoint\bugpoint.vcproj" check, "test\check.vcproj" count, "utils\count\count.vcproj" intrinsics_gen, "include\llvm\intrinsics_gen.vcproj"...
2018 Sep 22
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
...ng to "finish building" the solution inside of the IDE nearly enough RAM, started swapping on building lli.cpp :(, but get back to under 5GB Ram usage after some seconds, my 2 core CPU is still not fast enough >Otherwise, there might be some workarounds. E.g. Unload the >"ZERO_CHECK" project from the IDE so it does not reconfigure (or just >run cmake from outside the IDE before building). >Or start the IDE from >the Developer Command Prompt so the right environment variables are >set. will check that later - it just costs me way too much time to get to t...
2018 May 16
0
Windows build strangeness
msbuild is is able to re-run cmake if a CMakeLists.txt changes. CMake adds a special project "ZERO_CHECK" that does this. However, I am not sure it runs when invoking on the individual projects instead of the solution. Try the cmake --build command, which should output the following: > cmake --build . --target opt CMake is re-running because C:/Users/Meinersbur/build/llvm/vc15_debug_x86/tool...
2018 May 16
2
Windows build strangeness
I think MSBuild isn't capable of re-running cmake and then reloading the project files when CMakeLists.txt changes. It re-runs cmake, but then continues the build with the stale projects. That probably explains the "PipSqueek.cxx doesn't exist" errors. As for the link error, it could also be caused by things like a file rename not getting picked up by MSBuild. The fix is