mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 10:49:16 +02:00
Disable PEEPHOLE opt in fpc 3.2.0 to fpc 3.2.3 => there is a bug that can cause crashed in fpdebug/lazutils
(cherry picked from commit 6d1185d76b
)
This commit is contained in:
parent
a111270ed0
commit
78bb88de35
@ -12,6 +12,21 @@
|
|||||||
<OtherUnitFiles Value="."/>
|
<OtherUnitFiles Value="."/>
|
||||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
|
<Conditionals Value="if(GetProjValue('FPC_FULLVERSION') > 30200) and
|
||||||
|
(GetProjValue('FPC_FULLVERSION') < 30204)
|
||||||
|
then begin
|
||||||
|
CustomOptions := '-OoNOPEEPHOLE' ;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// example for adding linker options on Mac OS X
|
||||||
|
//if TargetOS='darwin' then
|
||||||
|
// LinkerOptions := ' -framework OpenGL';
|
||||||
|
|
||||||
|
// example for adding a unit and include path on Windows
|
||||||
|
//if SrcOS='win' then begin
|
||||||
|
// UnitPath += ';win';
|
||||||
|
// IncPath += ';win';
|
||||||
|
//end;"/>
|
||||||
<Other>
|
<Other>
|
||||||
<Verbosity>
|
<Verbosity>
|
||||||
<ShowWarn Value="False"/>
|
<ShowWarn Value="False"/>
|
||||||
|
@ -9,6 +9,21 @@
|
|||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
|
<Conditionals Value="if(GetProjValue('FPC_FULLVERSION') > 30200) and
|
||||||
|
(GetProjValue('FPC_FULLVERSION') < 30204)
|
||||||
|
then begin
|
||||||
|
CustomOptions := '-OoNOPEEPHOLE' ;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// example for adding linker options on Mac OS X
|
||||||
|
//if TargetOS='darwin' then
|
||||||
|
// LinkerOptions := ' -framework OpenGL';
|
||||||
|
|
||||||
|
// example for adding a unit and include path on Windows
|
||||||
|
//if SrcOS='win' then begin
|
||||||
|
// UnitPath += ';win';
|
||||||
|
// IncPath += ';win';
|
||||||
|
//end;"/>
|
||||||
<Other>
|
<Other>
|
||||||
<CompilerMessages>
|
<CompilerMessages>
|
||||||
<IgnoredMessages idx6058="True" idx3123="True"/>
|
<IgnoredMessages idx6058="True" idx3123="True"/>
|
||||||
|
@ -13,7 +13,13 @@
|
|||||||
<UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
<Conditionals Value="if SrcOS<>'win' then
|
<Conditionals Value="if SrcOS<>'win' then
|
||||||
UnitPath := 'nonwin32';"/>
|
UnitPath := 'nonwin32';
|
||||||
|
|
||||||
|
if(GetProjValue('FPC_FULLVERSION') > 30200) and
|
||||||
|
(GetProjValue('FPC_FULLVERSION') < 30204)
|
||||||
|
then begin
|
||||||
|
CustomOptions := '-OoNOPEEPHOLE' ;
|
||||||
|
end;"/>
|
||||||
<Other>
|
<Other>
|
||||||
<Verbosity>
|
<Verbosity>
|
||||||
<ShowNotes Value="False"/>
|
<ShowNotes Value="False"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user