Enable optimizations in cross MSW CI builds
Amazingly, it seems that the latest gcc 12-based MinGW miscompiles something in TIFF code _without_ optimizations as the SaveTIFF() test fails when compiled with -O0 but works with -O2, so try enabling the optimizations for this test. It also makes more sense to run tests against the production/release versions of the library anyhow, we only used --disable-optimise to save on build time, but perhaps this is not as critical any longer.
This commit is contained in:
parent
6ba55b96b8
commit
f2c04694e1
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci_msw_cross.yml
vendored
2
.github/workflows/ci_msw_cross.yml
vendored
|
|
@ -147,7 +147,7 @@ jobs:
|
|||
|
||||
- name: Configure
|
||||
run: |
|
||||
./configure --host=${HOST_TRIPLET} --disable-sys-libs --disable-optimise --disable-debug_info $wxCONFIGURE_FLAGS || rc=$?
|
||||
./configure --host=${HOST_TRIPLET} --disable-sys-libs --disable-debug_info $wxCONFIGURE_FLAGS || rc=$?
|
||||
|
||||
if [ -n "$rc" ]; then
|
||||
echo '*** Configuring failed, contents of config.log follows: ***'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue