mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- Added a tool to clear the LLVM cache, if ever there is corruption or it needs rebuilt.
This commit is contained in:
parent
fc011e42dd
commit
08c4f2ac18
1 changed files with 9 additions and 0 deletions
9
tools/DelLLVMCache.cmd
Normal file
9
tools/DelLLVMCache.cmd
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
@echo off
|
||||||
|
if not exist %localappdata%\zdoom\cache\llvm* goto :eof
|
||||||
|
echo QZDoom's LLVM drawers may take some time to create at startup. Because of this,
|
||||||
|
echo the program uses a cache to temporarily store bitcode for faster startups. If
|
||||||
|
echo this cache is ever corrupted, this program has been created to solve the
|
||||||
|
echo problem.
|
||||||
|
echo.
|
||||||
|
echo Are you SURE you wish to destroy the cache?
|
||||||
|
del /p %localappdata%\zdoom\cache\llvm*
|
Loading…
Reference in a new issue