Skip to content

Commit

Permalink
2025-01-21 09:45 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
Browse files Browse the repository at this point in the history
  * .github/workflows/windows-ci.yml
    * install freeimage only in 64-bit environment,
      it's not available in the 32-bit one

  * contrib/3rd/sqlite3/sqlite3.hbp
    * use -Wno-unknown-warning-option to pacify problems with old
      clang versions which do not understand -Wno-stringop-overread
  • Loading branch information
druzus committed Jan 21, 2025
1 parent a72a8a5 commit 0ca7dbe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
mingw-w64-${{ env.msys_cpu }}-bzip2
mingw-w64-${{ env.msys_cpu }}-cairo
mingw-w64-${{ env.msys_cpu }}-curl
mingw-w64-${{ env.msys_cpu }}-freeimage
mingw-w64-${{ env.msys_cpu }}-libgd
mingw-w64-${{ env.msys_cpu }}-ghostscript
mingw-w64-${{ env.msys_cpu }}-openssl
Expand All @@ -72,6 +71,7 @@ jobs:
pacman -S --noconfirm mingw-w64-${{ env.msys_cpu }}-postgresql
pacman -S --noconfirm mingw-w64-${{ env.msys_cpu }}-libmariadbclient
pacman -S --noconfirm mingw-w64-${{ env.msys_cpu }}-firebird
pacman -S --noconfirm mingw-w64-${{ env.msys_cpu }}-freeimage
- name: Checkout code
uses: actions/checkout@v3
Expand Down
9 changes: 9 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2025-01-21 09:45 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* .github/workflows/windows-ci.yml
* install freeimage only in 64-bit environment,
it's not available in the 32-bit one

* contrib/3rd/sqlite3/sqlite3.hbp
* use -Wno-unknown-warning-option to pacify problems with old
clang versions which do not understand -Wno-stringop-overread

2025-01-21 09:08 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* .github/workflows/linux-ci.yml
* disabled global -Wno-error=... C compiler parameters
Expand Down
3 changes: 2 additions & 1 deletion contrib/3rd/sqlite3/sqlite3.hbp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
-c=gnu90{allgcc&HB_COMP_VER='45'}

# GCC 14 reports strlen reading 1 or more bytes from a region of size 0 warning
-cflag=-Wno-error=stringop-overread{allgcc&HB_BUILD_TEST='strict'&!(win&clang)}
-cflag=-Wno-error=stringop-overread{allgcc&HB_BUILD_TEST='strict'}
-cflag=-Wno-unknown-warning-option{allgcc&HB_BUILD_TEST='strict'}

sqlite3.c

Expand Down

0 comments on commit 0ca7dbe

Please sign in to comment.