mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 15:29:26 +01:00
* Set ControllerSupport to false for sparc/sparc64 and x86_64 CPUs.
This boolean must only be set to true if TControllerType is not simply (ct_none)
* ppu.pas: Increment CurrentPPULongVersion constant as the above modification
changes the number of fields of the TSettings record that is saved to
PPU in ST_LOADSETTINGS field.
git-svn-id: trunk@42323 -
This commit is contained in:
parent
828a248287
commit
d8b89432a2
@ -50,7 +50,7 @@ const
|
||||
CurrentPPUVersion = 207;
|
||||
{ for any other changes to the ppu format, increase this version number
|
||||
(it's a cardinal) }
|
||||
CurrentPPULongVersion = 1;
|
||||
CurrentPPULongVersion = 2;
|
||||
|
||||
{ unit flags }
|
||||
uf_big_endian = $000004;
|
||||
|
||||
@ -65,7 +65,7 @@ type
|
||||
Const
|
||||
{ Is there support for dealing with multiple microcontrollers available }
|
||||
{ for this platform? }
|
||||
ControllerSupport = true;
|
||||
ControllerSupport = false;
|
||||
|
||||
{ We know that there are fields after sramsize
|
||||
but we don't care about this warning }
|
||||
|
||||
@ -63,7 +63,7 @@ type
|
||||
Const
|
||||
{ Is there support for dealing with multiple microcontrollers available }
|
||||
{ for this platform? }
|
||||
ControllerSupport = true;
|
||||
ControllerSupport = false;
|
||||
|
||||
{ We know that there are fields after sramsize
|
||||
but we don't care about this warning }
|
||||
|
||||
@ -79,7 +79,7 @@ Type
|
||||
Const
|
||||
{ Is there support for dealing with multiple microcontrollers available }
|
||||
{ for this platform? }
|
||||
ControllerSupport = true;
|
||||
ControllerSupport = false;
|
||||
{ Size of native extended type }
|
||||
extended_size = 10;
|
||||
{ target cpu string (used by compiler options) }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user