aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2022-05-17 20:54:11 +0200
committerGitHub <noreply@github.com>2022-05-17 20:54:11 +0200
commit6e271b5c7ed38fd1a06245fe25ff2e6ac7dfb707 (patch)
tree2ad4ffaa2d772bdefc7a90ecdb085fa88bf39498
parent3a3c2bbfd8424a06cbde7184a6c2e56989574baf (diff)
parent072ff406206f863efe50e2136de035c6ed20b051 (diff)
downloadghdl-6e271b5c7ed38fd1a06245fe25ff2e6ac7dfb707.tar.gz
ghdl-6e271b5c7ed38fd1a06245fe25ff2e6ac7dfb707.tar.bz2
ghdl-6e271b5c7ed38fd1a06245fe25ff2e6ac7dfb707.zip
Merge pull request #2061 from cderrien/add_wall
Add the -Wall flag.
-rw-r--r--src/options.adb9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/options.adb b/src/options.adb
index 00da22ca5..9cf591d59 100644
--- a/src/options.adb
+++ b/src/options.adb
@@ -91,6 +91,14 @@ package body Options is
return Option_Err;
end if;
+ -- Handle -Wall
+ if Opt = "all" then
+ for I in Msgid_Warnings loop
+ Enable_Warning(I, True);
+ end loop;
+ return Option_Ok;
+ end if;
+
-- Normal warnings.
for I in Msgid_Warnings loop
if Warning_Image (I) = Opt then
@@ -300,6 +308,7 @@ package body Options is
P (" -Wbody warns for not necessary package body");
P (" -Wspecs warns if a all/others spec does not apply");
P (" -Wunused warns if a subprogram is never used");
+ P (" -Wall enables all warnings.");
P (" -Werror turns warnings into errors");
-- P ("Simulation option:");
-- P (" --assert-level=LEVEL set the level which stop the");