mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-29 22:12:44 +02:00
IDE: check standard ppu when switching compiler: jvm does not have classes
git-svn-id: trunk@48188 -
This commit is contained in:
parent
85dae0945d
commit
f1ec16e892
@ -504,13 +504,18 @@ begin
|
||||
TestGroupbox.Caption:=dlgCCOTestMissingPPU;
|
||||
|
||||
Result:=mrCancel;
|
||||
// rtl
|
||||
|
||||
if not Check('system',ccmlError) then exit;
|
||||
if not Check('sysutils',ccmlError) then exit;
|
||||
if not Check('classes',ccmlError) then exit;
|
||||
// fcl
|
||||
if not Check('avl_tree',ccmlError) then exit;
|
||||
if not Check('zstream',ccmlError) then exit;
|
||||
if not Check('objpas',ccmlError) then exit;
|
||||
|
||||
if CfgCache.TargetCPU='jvm' then begin
|
||||
if not Check('uuchar',ccmlError) then exit;
|
||||
end else begin
|
||||
if not Check('sysutils',ccmlError) then exit;
|
||||
if not Check('classes',ccmlError) then exit;
|
||||
if not Check('avl_tree',ccmlError) then exit;
|
||||
if not Check('zstream',ccmlError) then exit;
|
||||
end;
|
||||
|
||||
Result:=mrOk;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user