#51 2017-03-09 07:52:11

hnb
Member
Registered: 2015-06-15
Posts: 291

Re: mORMot and FPC 3.0/3.1.1

AOG wrote:

@vonH
The trunk changes can be found here: http://wiki.freepascal.org/User_Changes_Trunk
I leave it to hnb to explain more about NewPascal, but in general, NewPascal is a very recent trunk without the dangers of trunk.

as AOG said: NewPascal is a very recent trunk without the dangers of trunk (for mORMot)

NewPascal is compatible with FPC trunk, but not vice versa (for some time).

Many things has changed. We have unexpected and positive effect of NewPascal - I've started close cooperation with FPC core team and finally many areas (critical for mORMot) are improved. Current list of differences between NewPascal and FPC: http://newpascal.org/compass.html

Very short list in section "NewPascal individual changes" may be expanded in the future. Each item in "NewPascal individual changes" should be merged with FPC trunk (sooner or later). Some time ago "NewPascal individual changes" list was much, much longer.

Please note that http://wiki.freepascal.org/User_Changes_Trunk is not yet updated (no info about newest RTTI changes and management operators - http://free-pascal-general.1045716.n5.n … 7716.html)

Last edited by hnb (2017-03-09 07:53:41)


best regards,
Maciej Izak

Offline

#52 2020-06-23 16:14:37

George
Member
Registered: 2016-04-05
Posts: 140

Re: mORMot and FPC 3.0/3.1.1

SynCommons.pas contain:

{$ifndef UNICODE}
type
  /// low-level API structure, not defined in older Delphi versions
  TOSVersionInfoEx = record
    <SOME CODE HERE>
  end;
  {$endif UNICODE}

...

var
  ...
  /// the current Operating System information, as retrieved for the current process
  OSVersionInfo: TOSVersionInfoEx; 

When project configured to use key -MDelphiUnicode.
TOSVersionInfoEx is not available and application can't compile.
Also there is another issues as well.
-MDelphiUnicode is not supported for now?

---
FPC 3.2.0 with fixes.

Last edited by George (2020-06-23 16:29:30)

Offline

#53 2020-06-23 19:49:28

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,206
Website

Re: mORMot and FPC 3.0/3.1.1

No, DelphiUnicode is NOT supported yet.
It has NOT been tested.

Unicode mode (string=UnicodeString) is fully supported for Delphi, but not for FPC.
Our framework is 100% Unicode, but using UTF-8, as all data backends and JSON expects.
Only on the LCL/VCL is the string type involved.

Offline

Board footer

Powered by FluxBB