We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80d0c02 commit 9ea0082Copy full SHA for 9ea0082
.github/workflows/build-matrix.yml
@@ -112,6 +112,15 @@ jobs:
112
fi
113
114
if [[ "${{ matrix.target }}" == "windows" ]]; then
115
+ # Include MSVC debug symbols when available so crash dumps can be symbolized.
116
+ for b in "${bins[@]}"; do
117
+ for p in "build/${b}.pdb" "build/Release/${b}.pdb"; do
118
+ if [[ -f "$p" ]]; then
119
+ cp "$p" "$pkg_root/"
120
+ fi
121
+ done
122
123
+
124
sdl_found=0
125
declare -a dll_candidates=()
126
@@ -154,7 +163,7 @@ jobs:
154
163
- test_waveform_simple
155
164
156
165
Notes:
157
- - Windows bundle includes SDL2 runtime DLL.
166
+ - Windows bundle includes SDL2 runtime DLL and .pdb symbols (when available).
158
167
- Linux/macOS may still require system SDL2/OpenGL runtime packages.
159
168
EOF
160
169
0 commit comments