Re: [fpc-devel] help with softfloat for arm big endian crosscompiler

2006-12-19 Thread Florian Klaempfl
Michael Schnell schrieb: > > Thanks. Please keep me posted on this issue. > http://svn.freepascal.org/svn/logs/fpc-trunk.log ;) ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

[fpc-devel] Classes unit based on fgl

2006-12-19 Thread Vincent Snijders
Hi, Since this weekend the classes unit is based upon the fgl unit. What are the advantages of this change. Does it make the code in the classes unit (for example TFPList, TList and TStringList) faster or does this just improve maintainability, e.g. because changes made in the fgl unit are a

Re: [fpc-devel] Proposed change in simpleipc

2006-12-19 Thread Kris Leech
Luiz Americo Pereira Camara wrote: While developing with simpleipc i found that there's no straightforward way to identify the type of a message (see the forth paragraph of http://lazarusroad.blogspot.com/2006/12/only-one-instance.html), so i looked what i could do to improve it. Look forwa

Re: [fpc-devel] Classes unit based on fgl

2006-12-19 Thread Michael Van Canneyt
On Tue, 19 Dec 2006, Vincent Snijders wrote: > Hi, > > Since this weekend the classes unit is based upon the fgl unit. What are the > advantages of this change. > > Does it make the code in the classes unit (for example TFPList, TList and > TStringList) faster or does this just improve maintai

[fpc-devel] sqldb lazarus component

2006-12-19 Thread [EMAIL PROTECTED]
Hi to all, and excuse me if i'm writing to the wrong list but i just subrscibed ;) I got a problem that i'm not able to resolve... i'm using lazarus and freepascal compiler tools to cross-compile a software i'm developing to a Pocket PC with Windows 2003 inside. The system is winCe (widget)

Re: [fpc-devel] Proposed change in simpleipc

2006-12-19 Thread Vincent Snijders
Kris Leech schreef: Luiz Americo Pereira Camara wrote: While developing with simpleipc i found that there's no straightforward way to identify the type of a message (see the forth paragraph of http://lazarusroad.blogspot.com/2006/12/only-one-instance.html), so i looked what i could do to imp

Re: [fpc-devel] Proposed change in simpleipc

2006-12-19 Thread Michael Schnell
Is there any documentation on simpleipc ? -Michael ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

[fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Vlad
Hello. I made dylib with FPC (compiled in delphi mode if it is important). I have functions that I want to export listed in "exports" section, a few hundreds exported and that works fine but when I run otool it shows me thousands - class methods, functions, almost everything, and it seems like

Re: [fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Jonas Maebe
On 19 dec 2006, at 15:50, Vlad wrote: I made dylib with FPC (compiled in delphi mode if it is important). I have functions that I want to export listed in "exports" section, a few hundreds exported and that works fine but when I run otool it shows me thousands - class methods, functions, a

Re: [fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Florian Klaempfl
Jonas Maebe schrieb: > > On 19 dec 2006, at 15:50, Vlad wrote: > >> I made dylib with FPC (compiled in delphi mode if it is important). I >> have functions that I want to export listed in "exports" section, a >> few hundreds exported and that works fine but when I run otool it >> shows me thousan

Re: [fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Jonas Maebe
On 19 dec 2006, at 17:23, Florian Klaempfl wrote: The reason they are also exported, is that they are global symbols (i.e., they appear in the interface of a unit). I know the manual states that no symbols will be exported unless you mention them in the export statement, but afaik this is w

Re: [fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Florian Klaempfl
Jonas Maebe schrieb: > > On 19 dec 2006, at 17:23, Florian Klaempfl wrote: > >>> The reason they are also exported, is that they are global symbols >>> (i.e., they appear in the interface of a unit). I know the manual states >>> that no symbols will be exported unless you mention them in the expo

Re: [fpc-devel] Mac OS X dylib exported symbols

2006-12-19 Thread Jonas Maebe
On 19 dec 2006, at 18:04, Jonas Maebe wrote: All these "T" symbols are exported afaik. It should be fairly easy to fix for Mac OS X: just make all global symbols "private extern", then they are only global for other object files within the same library/binary. This doesn't seem to exist i