Skip to content
Snippets Groups Projects
Commit 46f6008f authored by Kostyantyn Vorobyov's avatar Kostyantyn Vorobyov
Browse files

Added a few more ignored warnings to the e-acsl-gcc.sh script

parent c9a3f8d7
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ Options:
-s <file> redirect all output to <file>
-P compile executable without debug features
-I <file> specify Frama-C executable [frama-c]
-G <file> specify GCC executable [gcc]
-G <file> specify C compiler executable [gcc]
Notes:
This help page shows only basic options.
......@@ -335,7 +335,13 @@ CFLAGS="$OPTION_CFLAGS
-Wno-unused-function \
-Wno-unused-variable \
-Wno-unused-but-set-variable \
-Wno-implicit-function-declaration"
-Wno-implicit-function-declaration \
-Wno-unknown-warning-option \
-Wno-extra-semi \
-Wno-tautological-compare \
-Wno-gnu-empty-struct \
-Wno-incompatible-pointer-types-discards-qualifiers \
-Wno-empty-body"
CPPFLAGS="$OPTION_CPPFLAGS"
LDFLAGS="$OPTION_LDFLAGS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment