mirror of https://github.com/mstorsjo/fdk-aac.git
github: Add -Wno-stringop-overflow to the GCC/CMake builds
CMake builds with -O3 by default, while autotools builds with -O2. When optimizing in -O3 mode, GCC finds things to warn about with -Wno-stringop-overflow that it doesn't find in -O2 mode. (This happens at least with GCC 11, found in Ubuntu 22.04.)
This commit is contained in:
parent
23b030f80e
commit
48255d057a
|
@ -20,7 +20,7 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Build
|
||||
run: |
|
||||
cmake . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_PROGRAMS=YES -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror"
|
||||
cmake . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_PROGRAMS=YES -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror -Wno-stringop-overflow"
|
||||
cmake --build build
|
||||
|
||||
macos-autotools:
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Build
|
||||
run: |
|
||||
cmake . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_PROGRAMS=YES -DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DCMAKE_CROSSCOMPILING=TRUE -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror"
|
||||
cmake . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_PROGRAMS=YES -DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DCMAKE_CROSSCOMPILING=TRUE -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror -Wno-stringop-overflow"
|
||||
cmake --build build
|
||||
|
||||
msys-cmake:
|
||||
|
|
Loading…
Reference in New Issue