mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 23:08:05 +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="."/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</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>
|
||||
<Verbosity>
|
||||
<ShowWarn Value="False"/>
|
||||
|
@ -9,6 +9,21 @@
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</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>
|
||||
<CompilerMessages>
|
||||
<IgnoredMessages idx6058="True" idx3123="True"/>
|
||||
|
@ -13,7 +13,13 @@
|
||||
<UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<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>
|
||||
<Verbosity>
|
||||
<ShowNotes Value="False"/>
|
||||
|
Loading…
Reference in New Issue
Block a user