Re: [fpc-pascal] Problems with Dynlibs.UnloadLibrary on Linux

2008-12-19 Thread Werner Bochtler
Andrew Brunner schrieb: Thanks for that tip! So running under GDB I get the following info... This GDB was configured as x86_64-linux-gnu... (gdb) run shared library problem and linux 64 bit - maybe this problem is related to FPC bug reports 11931 / 12265 (jump table problem). Werner

Re: [fpc-pascal] fpc 2.2.2 in fink for Mac OS X

2008-12-19 Thread Leonardo M . Ramé
Hi Karl-Michael, what is Fink? where can I look about it?. Leonardo M. Ramé http://leonardorame.blogspot.com --- On Fri, 12/19/08, Schindler Karl-Michael karl-michael.schind...@physik.uni-halle.de wrote: From: Schindler Karl-Michael karl-michael.schind...@physik.uni-halle.de Subject:

Re: [fpc-pascal] FreePascal/Lazarus plug-in's for Delphi.

2008-12-19 Thread Skybuck Flying
- Original Message - From: Florian Klaempfl flor...@freepascal.org To: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Sent: Thursday, December 18, 2008 12:10 PM Subject: Re: [fpc-pascal] FreePascal/Lazarus plug-in's for Delphi. Skybuck Flying schrieb: Hello, To make it

Re: [fpc-pascal] Problems with Dynlibs.UnloadLibrary on Linux

2008-12-19 Thread Jonas Maebe
On 19 Dec 2008, at 09:48, Werner Bochtler wrote: Andrew Brunner schrieb: Thanks for that tip! So running under GDB I get the following info... This GDB was configured as x86_64-linux-gnu... (gdb) run shared library problem and linux 64 bit - maybe this problem is related to FPC bug

Re: [fpc-pascal] FreePascal/Lazarus plug-in's for Delphi.

2008-12-19 Thread Gerard N/A
Hi, On Thu, Dec 18, 2008 at 6:47 PM, Skybuck Flying skybuck2...@hotmail.com wrote: I tried compiling the free pascal compiler in Delphi and noticed how free pascal had some language features which were not supported by Delphi, which scares me a bit... I would like to have the ability to go

Re: [fpc-pascal] FreePascal/Lazarus plug-in's for Delphi.

2008-12-19 Thread Joost van der Sluis
Op donderdag 18-12-2008 om 18:47 uur [tijdzone +0100], schreef Skybuck Flying: - Original Message - From: Florian Klaempfl flor...@freepascal.org To: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Sent: Thursday, December 18, 2008 12:10 PM Subject: Re: [fpc-pascal]

Re: [fpc-pascal] FreePascal/Lazarus plug-in's for Delphi.

2008-12-19 Thread Andrew Brunner
I think all efforts should the concentrated on providing mainstream features that are common in newer development platforms (Java/C#) . I feel that spending time on making Delphi code more readable is a waste since there are SO many other issues that need to be dealt with. C# has a lot of ideas

[fpc-pascal] Procedure types

2008-12-19 Thread Mark Morgan Lloyd
I've got a few thousand lines of Pascal which I'm converting to FPC. It's actually the Meta-2 compiler-compiler which despite its age I still find useful for embedded script processing, I hope eventually to get it running on SPARC and possibly ARM as well as x86. Linux will not be the first OS

[fpc-pascal] [OT] syntax diagrams in the reference guide

2008-12-19 Thread Marc Santhoff
Hi, I'd like to ask: Is there any tool for creating the syntax diagrams shown in the reference guide? If yes, which one and where can I get it? TIA, Marc ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Procedure types

2008-12-19 Thread leledumbo
FPC treats procedural types a little different from Delphi / TP, see http://www.freepascal.org/docs-html/ref/refse17.html this . You can therefore write your AddressOf function as: FUNCTION AddressOf(VAR x): POINTER; ... // variables (if you ever need) begin {$ifdef fpc} AddressOf:=...@x;