diff options
author | Thomas Haller <thaller@redhat.com> | 2023-11-28 21:44:30 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-11-29 15:04:17 (GMT) |
commit | a4718e6747243af4ce6de66e7c037d7d9c7814fc (patch) | |
tree | ecb52a069f8bccbe7574d216c2aa5ceb26cec710 | |
parent | 30d6e63cc0b17a10b37f3ed31ee0e49e38ed6bc8 (diff) | |
download | libnl-a4718e6747243af4ce6de66e7c037d7d9c7814fc.zip libnl-a4718e6747243af4ce6de66e7c037d7d9c7814fc.tar.gz libnl-a4718e6747243af4ce6de66e7c037d7d9c7814fc.tar.bz2 |
github: build with "-fexceptions" CFLAGS
This seems good for our test builds.
This can result in additional uninitialized variable warnings about
autovariables with cleanup attribute.
This flag is also enabled by default on Fedora package build ([1]).
[1] https://src.fedoraproject.org/rpms/redhat-rpm-config//blob/rawhide/f/buildflags.md
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 930316e..c6b6789 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: set -x export CC="${{ matrix.cc }}" - export CFLAGS="-DNL_MORE_ASSERTS=1000 -O2 -Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11" + export CFLAGS="-DNL_MORE_ASSERTS=1000 -O2 -Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11 -fexceptions" if [ "$CC" = "clang" ]; then CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument -Wno-error=unused-function" export LDFLAGS="-Wl,--no-undefined-version,--fatal-warnings" @@ -128,7 +128,7 @@ jobs: set -x git clean -fdx export CC="${{ matrix.cc }}" - export CFLAGS="-Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11" + export CFLAGS="-Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11 -fexceptions" if [ "$CC" = "clang" ]; then CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument -Wno-error=unused-function" fi @@ -188,7 +188,7 @@ jobs: set -x export CC="${{ matrix.cc }}" - export CFLAGS="-DNL_MORE_ASSERTS=1000 -O2 -Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11" + export CFLAGS="-DNL_MORE_ASSERTS=1000 -O2 -Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11 -fexceptions" if [ "$CC" = "clang" ]; then CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument -Wno-error=unused-function" export LDFLAGS="-Wl,--no-undefined-version,--fatal-warnings" |