mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-08 15:07:30 +01:00
IDE: CheckCompilerQuality: ppcjvm: check for uuchar.ppu instead of classes.ppu
git-svn-id: trunk@48275 -
This commit is contained in:
parent
0190617b21
commit
9d6d80a58d
@ -355,12 +355,21 @@ begin
|
||||
Note:=lisSystemPpuNotFoundCheckYourFpcCfg;
|
||||
exit;
|
||||
end;
|
||||
if CompareFileExt(CfgCache.Units['classes'],'ppu',false)<>0 then
|
||||
if (CfgCache.RealTargetCPU='jvm') then
|
||||
begin
|
||||
if (CompareFileExt(CfgCache.Units['uuchar'],'ppu',false)<>0) then
|
||||
begin
|
||||
Note:= 'uuchar.ppu not found. Check your fpc.cfg.';
|
||||
exit;
|
||||
end;
|
||||
end else begin
|
||||
if (CompareFileExt(CfgCache.Units['classes'],'ppu',false)<>0) then
|
||||
begin
|
||||
Note:=lisClassesPpuNotFoundCheckYourFpcCfg;
|
||||
exit;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
Note:=lisOk;
|
||||
Result:=sddqCompatible;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user