IDE: Remove "Note: passing compiler option -M twice with different values" message, many -M options are allowed.

This commit is contained in:
Juha 2023-06-22 01:47:59 +03:00
parent c691b5efb3
commit 6da992966d

View File

@ -713,8 +713,10 @@ begin
Param:=TFPCParamValue(ParsedParams[i]);
if fpfValueChanged in Param.Flags then begin
Msg:='';
if Param.Kind in [fpkBoolean,fpkValue] then
Msg:=Format(lisPassingCompilerOptionTwiceWithDifferentValues, [Param.Name])
if Param.Kind in [fpkBoolean,fpkValue] then begin
if Param.Name<>'M' then // Many -M options are allowed.
Msg:=Format(lisPassingCompilerOptionTwiceWithDifferentValues, [Param.Name]);
end
else if Param.Kind=fpkDefine then
Msg:=Format(lisPassingCompilerDefineTwiceWithDifferentValues, [Param.Name]);
if Msg='' then continue;