build/windows: Enable .pdb bundling in x86 (32-bit)

Following 8cf688ac. Since GCC 14 was finally released with this feature.
Clang have it for years in advance so no change is needed for arm64 and x64.
This commit is contained in:
Bruno Lopes 2024-05-15 21:20:36 -03:00
parent 36ce192a53
commit 26e2f693dc
1 changed files with 1 additions and 2 deletions

View File

@ -133,9 +133,8 @@ for exe in "${binArray[@]}"; do
done done
### .pdb (CodeView) debug symbols ### .pdb (CodeView) debug symbols
### TODO: REMOVE 'if [ "$MSYSTEM...' WHEN GCC 14 IS ON MSYS2
### crossroad don't have LLVM/Clang backend yet ### crossroad don't have LLVM/Clang backend yet
if [ "$MSYSTEM_CARCH" != "i686" ] && [[ ! "$CI_JOB_NAME" =~ "cross" ]]; then if [ "$CI_JOB_NAME" != "gimp-win-x64-cross" ]; then
cp -fr ${GIMP_PREFIX}/bin/*.pdb ${GIMP_DISTRIB}/bin/ cp -fr ${GIMP_PREFIX}/bin/*.pdb ${GIMP_DISTRIB}/bin/
fi fi