mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 13:53:49 -07:00
Fixes crash handler for jenkins builds. (#1445)
* Fixes crash handler for jenkins builds. We must include the pdb in redistributables. * Properly selects PDB file path for inclusion Co-authored-by: Christopher Leggett <chris@leggett.dev>
This commit is contained in:
parent
a9f3aedf8e
commit
a2d4f4766d
2 changed files with 8 additions and 2 deletions
|
@ -293,7 +293,9 @@ static void printStack(CONTEXT* ctx) {
|
|||
|
||||
process = GetCurrentProcess();
|
||||
thread = GetCurrentThread();
|
||||
SymInitialize(process, nullptr, true);
|
||||
|
||||
SymSetOptions(SYMOPT_NO_IMAGE_SEARCH | SYMOPT_IGNORE_IMAGEDIR);
|
||||
SymInitialize(process, "debug", true);
|
||||
|
||||
|
||||
constexpr DWORD machineType =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue