# - coverage: Compile for building coverage.
# - debug: Enable debugging, such as compile time debug options.
# - fanalyzer: Compile using GCC's -fanalyzer compile time option.
+# - flex_arrays: Use GCC strict flex arrays (supported by GCC version 13 or greater).
# - gcc: Use GCC specific settings.
-# - gcc_13: Use GCC version 13 or greater specific settings.
# - individual: Compile using per project (individual) libraries, does not handle thread or threadless cases.
# - individual_thread: This is required when compiling in individual mode with "thread" mode.
# - level: Compile using per level libraries.
version_file micro
version_target minor
-modes android clang coverage debug fanalyzer gcc gcc_13 individual individual_thread level monolithic test thread threadless
+modes android clang coverage debug fanalyzer flex_arrays gcc individual individual_thread level monolithic test thread threadless
modes_default debug gcc monolithic thread
build_compiler gcc
# fake -s data/build/stand_alone/settings.firewall clean build
#
# Modes:
-# - android: Compile on an android system (using Termux; may need modification depending on the android system).
-# - clang: Use CLang rather than the default, which is generally GCC.
-# - coverage: Compile for building coverage.
-# - debug: Enable debugging, such as compile time debug options.
-# - fanalyzer: Compile using GCC's -fanalyzer compile time option.
-# - gcc: Use GCC specific settings.
-# - gcc_13: Use GCC version 13 or greater specific settings.
-# - test: Compile for a test, such as unit testing.
-# - thread: Compile with thread support.
-# - threadless: Compile without thread support.
+# - android: Compile on an android system (using Termux; may need modification depending on the android system).
+# - clang: Use CLang rather than the default, which is generally GCC.
+# - coverage: Compile for building coverage.
+# - debug: Enable debugging, such as compile time debug options.
+# - fanalyzer: Compile using GCC's -fanalyzer compile time option.
+# - flex_arrays: Use GCC strict flex arrays (supported by GCC version 13 or greater).
+# - gcc: Use GCC specific settings.
+# - test: Compile for a test, such as unit testing.
+# - thread: Compile with thread support.
+# - threadless: Compile without thread support.
#
build_name firewall
version_file micro
version_target minor
-modes android clang coverage debug fanalyzer gcc gcc_13 test thread threadless
+modes android clang coverage debug fanalyzer flex_arrays gcc test thread threadless
modes_default debug gcc thread
build_compiler gcc
flags-android -Wno-implicit-function-declaration -Wl,-z,norelro
flags-clang -Wno-logical-op-parentheses
flags-fanalyzer -fanalyzer
-flags-gcc_13 -fstrict-flex-arrays=3
+flags-flex_arrays -fstrict-flex-arrays=3
flags-test -O0 -fstack-protector-strong -Wall
flags-thread -pthread