]> Kevux Git Server - fll/commitdiff
Update: Add fanalyzer build mode.
authorKevin Day <kevin@kevux.org>
Thu, 26 Jan 2023 00:55:02 +0000 (18:55 -0600)
committerKevin Day <kevin@kevux.org>
Thu, 26 Jan 2023 00:55:02 +0000 (18:55 -0600)
I keep forgetting to run the GCC fanalyzer sanity checks to help catch problems before making a release.
Add a formal mode in all of the build settings to make this processor easier and therefore easier to remember.

Add missing -Wall to some of the files for the test mode.

27 files changed:
build/level_0/settings
build/level_1/settings
build/level_2/settings
build/monolithic/settings
level_3/byte_dump/data/build/settings
level_3/control/data/build/settings
level_3/controller/data/build/settings
level_3/fake/data/build/settings
level_3/firewall/data/build/settings
level_3/fss_basic_list_read/data/build/settings
level_3/fss_basic_list_write/data/build/settings
level_3/fss_basic_read/data/build/settings
level_3/fss_basic_write/data/build/settings
level_3/fss_embedded_list_read/data/build/settings
level_3/fss_embedded_list_write/data/build/settings
level_3/fss_extended_list_read/data/build/settings
level_3/fss_extended_list_write/data/build/settings
level_3/fss_extended_read/data/build/settings
level_3/fss_extended_write/data/build/settings
level_3/fss_identify/data/build/settings
level_3/fss_payload_read/data/build/settings
level_3/fss_payload_write/data/build/settings
level_3/fss_status_code/data/build/settings
level_3/iki_read/data/build/settings
level_3/iki_write/data/build/settings
level_3/status_code/data/build/settings
level_3/utf8/data/build/settings

index cc83730c58ed318d4213adc745558820499b3403..140b927f8ee3db401d0679ebb4cbe71a869c95e1 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes level level_threadless clang test
+modes level level_threadless clang test fanalyzer
 modes_default level
 
 build_compiler gcc
@@ -110,7 +110,8 @@ defines-level_threadless -D_di_pthread_support_
 
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses
 flags-clang -Wno-logical-op-parentheses
-flags-test -fstack-protector
+flags-test -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-level -pthread
 
 flags_library -fPIC
index db982ad42ff2ed66d1ed18222728f0d999d884d3..de3a27f0f33fbf9feeb8bbe82ccabb6283fbe4d2 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes level level_threadless clang test
+modes level level_threadless clang test fanalyzer
 modes_default level
 
 build_compiler gcc
@@ -76,7 +76,8 @@ defines-level_threadless -D_di_pthread_support_
 
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses
 flags-clang -Wno-logical-op-parentheses
-flags-test -fstack-protector
+flags-test -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-level -pthread
 
 flags_library -fPIC
index c0dfcef9501ea791b62599b37ce5fb98c400f5ce..e111a7f3c4c285c3ba9e1024e43ca0527d0f9ccc 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes level level_threadless clang test
+modes level level_threadless clang test fanalyzer
 modes_default level
 
 build_compiler gcc
@@ -75,7 +75,8 @@ defines-level_threadless -D_di_pthread_support_
 
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses
 flags-clang -Wno-logical-op-parentheses
-flags-test -fstack-protector
+flags-test -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-level -pthread
 
 flags_library -fPIC
index 446f1ac3bc70430c16062fee68c4b3bfd0f4c14a..c51f779d2d0f26c3ba9a7c4fbeaf8313de3f0727 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes monolithic monolithic_threadless clang test
+modes monolithic monolithic_threadless clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -159,7 +159,8 @@ defines-monolithic_threadless -D_di_pthread_support_
 
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses
 flags-clang -Wno-logical-op-parentheses
-flags-test -fstack-protector
+flags-test -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-monolithic -pthread
 
 flags_library -fPIC
index 3000571e057557a9a4b886df3b48544cb9f82db1..367f3d5b5ae5d605dc2a1fd29ebad3d533ce3e80 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 5e7f5a9b094d4b3eb94635a1a15d9f76022d7c6d..62d23f68fd28b8d9c717a7359569f520c5e43aba 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 144f601029b21cba8cf2ea6907cb37bcc7af0097..d9d2cdddc453b73aaebc44918f33b14a442ac518 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test as_init
+modes individual level monolithic clang test fanalyzer as_init
 modes_default monolithic
 
 build_compiler gcc
@@ -73,6 +73,7 @@ defines-as_init -D_controller_as_init_
 flags -O2 -z now -g -pthread -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 754a9ec10551e1b1d1888d89a10530a79705721a..357c008a5aa7aea1bbc3eeb725a787c6e88b541e 100644 (file)
@@ -11,7 +11,7 @@ version_target minor
 process_pre process_pre.sh
 process_post process_post.sh
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -70,6 +70,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -pthread -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 68663f692393d451ea4abd2e5b9cfe60f385cebd..a28d4eb248bcecce5f01a62ab835296d96fbb915 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -62,6 +62,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -pthread -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 918ecdf2f5b31fe5f7c66ec9cb47e7494ea1358a..d1a0f2360782d900070a08b84f69e823728bd55d 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 1e2f06d38da8a4b9d6648cfef05604cfd762201f..22dcf8e3581f4cdaf8be7f14855a4d4439bf5ba1 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 1bbb209a320b5e287e187b3d8a1be12f5bd6abe7..381188ac94b544e7348f93ff09a17dfc92c3cd19 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index ef5d3f163bec166a24b8731a2f79cc09fece8ef6..9711764f0575ff28c06daa6d10b537e56deec827 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index b926fd8dc758a8d39081e744fb160bfadc3fb727..edf9c8997f57e0edddb98d1f7f36d99052a0fc76 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -51,6 +51,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index b1098156d22c09f521d9ec297463698c8e13c760..99f75ce6fce694e88aef4a2a8284b086c10b8c04 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 9cba0f774aa25d73a5277d34ac01e6cfe81a991c..12258203c9e5969d8dd772b2d6d0a03126b76384 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -51,6 +51,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 6106425b50d6d9cd331b5a9d56c9d0f936e40605..fd98f5e44c13cbc0ba5507e27e91e9ae5fa38990 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -51,6 +51,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 90731a268e741690efa7e60680320803b5312ea2..aa57309d053f88ba1b4f4ff7c9d86ce26fb565dd 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 10f4b2da4716a9b0ab80d7248ab2fb06d0c8f6b6..f6657dfafce3a3e42290792a961e23b838df1cce 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 92ade3421c5b5ff6436103724383551853ed0945..6d74c4c5f558dbbf10d220ec9e7efbab5a1ddbf5 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index de4efc37acae57f0cc1e5dd6fcc6b2a398ee7cd5..2f8a9bb5768126715a21e449cecb87bcecaf75e4 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index e5ceeac1e10d3af685f65eeec00804797d285f18..b4125cfc1a58386a47e263ed9468b71d956d4f96 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -51,6 +51,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 2b3d369e2ebff6ba0b1a69226299b04be709f47e..16a5b89fe59a79a7cdbdddab0ebabba5c9295c78 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 85e60b0ae4f8009d8f300244b17427ae97b7f70b..928d3a31958481744790e044efbee5bf9167ee32 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index e111ef150c44aa4fcb258fe0bc5556ef049e0b1d..5fbf1e02892bb21eb44ec6bc6873e69fbf0a5f02 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 flags_library -fPIC
 flags_object -fPIC
index 07dd890df38d3fda7ecaff810be97125ea72ffdd..d1c223f22f5f0eda7a46c1344970256988c166af 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC
index 205417fcdf06e9a4d225c581811f494d63f013b3..3d371d7fc14a520ab6e3ab7b0c0b7265802822c5 100644 (file)
@@ -8,7 +8,7 @@ version_micro 4
 version_file micro
 version_target minor
 
-modes individual level monolithic clang test
+modes individual level monolithic clang test fanalyzer
 modes_default monolithic
 
 build_compiler gcc
@@ -60,6 +60,7 @@ defines -D_libcap_legacy_only_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_
 flags -O2 -z now -g -fdiagnostics-color=always -Wno-logical-not-parentheses -Wno-parentheses -Wno-missing-braces
 flags-clang -Wno-logical-op-parentheses
 flags-test -O0 -fstack-protector -Wall
+flags-fanalyzer -fanalyzer
 flags-coverage -O0 --coverage -fprofile-abs-path -fprofile-dir=build/coverage/
 
 flags_library -fPIC