mirror of https://github.com/PCSX2/pcsx2.git
Added clean_msvc.cmd, which is a batch file that deletes all the mess MSVC leaves behind even with Clean/Rebuild. Chances are if you're having compiler/linker problems you can just double-click clean_msvc.cmd and have it fixed, rather than having to do a full re-checkout of sources (see file for more details on why).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1557 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
bd91426bab
commit
9f35752ed8
|
@ -0,0 +1,12 @@
|
|||
-- clean_msvc.cmd
|
||||
--
|
||||
-- This batch file cleans up some files that MSVC's Clean/Rebuild commands tend to miss.
|
||||
-- In particular the .ilk and .pdb files are known to get corrupted and cause all sorts of odd
|
||||
-- linker errors, and the .ncb files can also get corrupted and cause intellisense breakges.
|
||||
--
|
||||
-- Safety: This tool should be pretty safe. None of the files it deletes are important. That
|
||||
-- is, they're all files MSVC just rebuilds automatically next time you run/recompile. But even
|
||||
-- so, don't go running this batch file in your root c:\ folder. It's probably not a wise action.
|
||||
-- Enjoy. :)
|
||||
|
||||
del /s *.ncb;*.ilk;*.pdb;*.bsc;*.sbr
|
Loading…
Reference in New Issue