Merge branch 'IDE/SkipCheck' into 'main'

IDE: Take into account the parameter --skip-checks when displaying errors

See merge request freepascal.org/lazarus/lazarus!451
This commit is contained in:
n7800 2025-04-03 14:55:19 +00:00
commit 5154b74c90

View File

@ -55,7 +55,7 @@ uses
// IdeConfig
LazConf, EnvironmentOpts, ModeMatrixOpts, TransferMacros, IdeConfStrConsts,
IDEProcs, etMakeMsgParser, etFPCMsgFilePool, ParsedCompilerOpts, CompilerOptions,
EditDefineTree,
EditDefineTree, IDECmdLine,
// IdePackager
IdePackagerStrConsts,
// IDE
@ -1138,7 +1138,7 @@ begin
debugln('Warning: (lazarus) [TBuildManager.RescanCompilerDefines]: invalid compiler:');
debugln(Msg);
if not Quiet then begin
if not Quiet and not GetSkipCheck(skcFpcSrc) then begin
IDEMessageDialog(lisCCOErrorCaption, Format(
lisThereIsNoFreePascalCompilerEGFpcOrPpcCpuConfigured, [ExeExt,
LineEnding, Msg]), mtError, [mbOk]);
@ -1267,7 +1267,7 @@ begin
FPCSrcScans.Scan(AsyncScanFPCSrcDir);
end;
if not Quiet then begin
if not Quiet and not GetSkipCheck(skcFpcExe) then begin
// check for common installation mistakes
if not PPUFilesAndCompilerMatch then exit;
if (UnitSetCache.GetCompilerKind=pcFPC) then begin