mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 09:17:53 +02:00
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:
commit
134fb19e6d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user