From 2d5de256d9780e4bb6378b77753edd2fca778f2b Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 26 Aug 2016 14:01:46 +0200 Subject: [PATCH] Delete new VS2015 incremental pdb/obj files from dist folders --- dist.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dist.sh b/dist.sh index f56c3ff09..71238b1fb 100644 --- a/dist.sh +++ b/dist.sh @@ -43,6 +43,11 @@ cp /c/Program\ Files\ \(x86\)/Windows\ Kits/8.1/Redist/D3D/x86/d3dcompiler_47.dl cp LICENSE.md Documentation/htmlhelp/*.chm dist/Release64/ cp LICENSE.md Documentation/htmlhelp/*.chm dist/Release32/ +# Delete new VS2015 incremental pdb files, these are just build artifacts +# and aren't needed for later symbol resolution etc +find dist/Release{32,64}/ -iname '*.ipdb' -exec rm '{}' \; +find dist/Release{32,64}/ -iname '*.iobj' -exec rm '{}' \; + # Make a copy of the main distribution folder that has PDBs cp -R dist/Release64 dist/ReleasePDBs64 cp -R dist/Release32 dist/ReleasePDBs32