Files
renderdoc/breakpad/getmssym.sh
T
baldurk c38affcded Initial commit of existing code.
* All renderdoc code up to this point was written by me, history is available by request
2014-05-02 08:33:01 +01:00

6 lines
221 B
Bash

#!/bin/bash
curl --user-agent "Microsoft-Symbol-Server" http://msdl.microsoft.com/download/symbols/$1/$2/${1%.*}.pd_ --output ${1%.*}.pd_
expand ${1%.*}.pd_ ${1%.*}.pdb
./makesym.sh ${1%.*}.pdb
rm ${1%.*}.pd_ ${1%.*}.pdb