[fpc-pascal] Can't disable quoting in TStrings

2020-08-19 Thread Luis - SoftSAT Sistemas via fpc-pascal
As stated in http://docwiki.embarcadero.com/Libraries/Tokyo/en/System.Classes.TStrings.QuoteChar setting QuoteChar to null should disable the quote, but it won't work in FPC 3.2. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] FFI or RTTI invoke for Apple arm64

2020-08-19 Thread Carlo Kok via fpc-pascal
It looks like I misread the error completely, and presumed, from the include logic that it was x86_64 / x86 only. It compiles now, thanks! On Wed, Aug 19, 2020, at 14:09, Sven Barth via fpc-pascal wrote: > Carlo Kok via fpc-pascal schrieb am Mi., > 19. Aug. 2020, 13:17: >> Hi, >> >> for

Re: [fpc-pascal] FFI or RTTI invoke for Apple arm64

2020-08-19 Thread Sven Barth via fpc-pascal
Carlo Kok via fpc-pascal schrieb am Mi., 19. Aug. 2020, 13:17: > Hi, > > for PascalScript FFI support, are there plans to support RTTI .Invoke, or > any form of FFI available to do dynamic invoke from Pascalscript to FPC/api > code? > Rtti.Invoke is available in 3.2.0 however for all platforms

Re: [fpc-pascal] FFI or RTTI invoke for Apple arm64

2020-08-19 Thread Michael Van Canneyt via fpc-pascal
On Wed, 19 Aug 2020, Carlo Kok via fpc-pascal wrote: Hi, for PascalScript FFI support, are there plans to support RTTI .Invoke, or any form of FFI available to do dynamic invoke from Pascalscript to FPC/api code? As far as I know, the RTTI.Invoke is there. There are even tests for it. We

[fpc-pascal] FFI or RTTI invoke for Apple arm64

2020-08-19 Thread Carlo Kok via fpc-pascal
Hi, for PascalScript FFI support, are there plans to support RTTI .Invoke, or any form of FFI available to do dynamic invoke from Pascalscript to FPC/api code? -- Carlo Kok ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Regression in 3.2.0 ??

2020-08-19 Thread Sven Barth via fpc-pascal
Peter via fpc-pascal schrieb am Mi., 19. Aug. 2020, 08:17: > Has anyone any ideas to fix it? It compiles if I change stdcall to > CDecl, but I have no idea if that is a valid fix. > (More info; see bug 37566) > Using the same ifdef as in the interface is the correct fix. The compiler now more

Re: [fpc-pascal] FPC buildbot

2020-08-19 Thread Darius Blaszyk via fpc-pascal
Hi Travis & Joost, Thanks for all your suggestions! I created a simple buildbot for FPC projects and used sfpt as the tool to upload to an FTP server. It is surprisingly stable. The buildbot is an instantFPC script that can be run in an endless loop to regularly check for new commits or can be

Re: [fpc-pascal] Regression in 3.2.0 ??

2020-08-19 Thread Michael Van Canneyt via fpc-pascal
On Tue, 18 Aug 2020, Peter via fpc-pascal wrote: I wondering if there is a regression in 3.2.0. The Lazarus file fpguiwsprivate.pp no longer compiles. It was fine in 3.0.4. The error message "No matching implementation for interface method ... CDecl; found " is strange as the interface and

[fpc-pascal] Regression in 3.2.0 ??

2020-08-19 Thread Peter via fpc-pascal
I wondering if there is a regression in 3.2.0. The Lazarus file fpguiwsprivate.pp no longer compiles. It was fine in 3.0.4. The error message "No matching implementation for interface method ... CDecl; found " is strange as the interface and implementation are both clearly defined as stdcall.