From 5aa87ef99e4f5ba046d215ac6d99a645ce7a0e1d Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 30 Mar 2020 12:52:44 +0200 Subject: options: handle -fmax-errors= --- src/errorout.ads | 2 +- src/options.adb | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/errorout.ads b/src/errorout.ads index 5888193dc..f8cd0eb29 100644 --- a/src/errorout.ads +++ b/src/errorout.ads @@ -24,7 +24,7 @@ package Errorout is Nbr_Errors : Natural := 0; -- Maximum number of errors, before silent them. - Max_Nbr_Errors : constant Natural := 100; + Max_Nbr_Errors : Natural := 100; type Msgid_Type is ( diff --git a/src/options.adb b/src/options.adb index f43ee7663..2e04f977e 100644 --- a/src/options.adb +++ b/src/options.adb @@ -174,6 +174,14 @@ package body Options is Error_Msg_Option ("numeric value expected after -ftabstop="); return Option_Err; end; + elsif Opt'Length > 13 and then Opt (1 .. 13) = "-fmax-errors=" then + begin + Max_Nbr_Errors := Natural'Value (Opt (14 .. Opt'Last)); + exception + when Constraint_Error => + Error_Msg_Option ("numeric value expected after -fmax-errors="); + return Option_Err; + end; elsif Opt = "--bootstrap" then Bootstrap := True; elsif Opt = "-fexplicit" then -- cgit v1.2.3