Re: [fpc-pascal] Compiling arm-embedded fpc

2013-01-24 Thread Michael Ring
I could reproduce the problem on Fedora 18 x86_64. The error shows up in revision 23457, the only file changed in this revision is compiler/arm/aoptcpu.pas. Checkin comment for file was: Revision *23457* - (view

Re: [fpc-pascal] Sybil Library - OS/2 and other INF e-books

2013-01-24 Thread Graeme Geldenhuys
On 01/24/13 17:55, Tomas Hajny wrote: > > It's probably worth mentioning that since these INF > documents come from a different compiler / project, some of the included > information does not fully apply to FPC and its RTL. Indeed. Those ebooks might, or might not be useful. I just thought I woul

Re: [fpc-pascal] Re: [fpc-devel] FPJSONRTTI: Case insensitive.

2013-01-24 Thread silvioprog
2013/1/24 Michael Van Canneyt > On Thu, 24 Jan 2013, silvioprog wrote:2013/1/24 Michael Van Canneyt < > mich...@freepascal.org> > >> [...] >> Maybe we can have a property for this. >> >> This would be an excellent idea. This new property could be to False by >> default. >> >> I'll open an i

Re: [fpc-pascal] Re: [fpc-devel] FPJSONRTTI: Case insensitive.

2013-01-24 Thread Michael Van Canneyt
On Thu, 24 Jan 2013, silvioprog wrote: 2013/1/24 Michael Van Canneyt [...] Maybe we can have a property for this. This would be an excellent idea. This new property could be to False by default. I'll open an issue about this. Implemented it. Please test and close the bugreport if O

Re: [fpc-pascal] Sybil Library - OS/2 and other INF e-books

2013-01-24 Thread Tomas Hajny
On Thu, January 24, 2013 18:03, Graeme Geldenhuys wrote: Hi Graeme, > I know there are still a few of you developing for the OS/2 platform. So > I made available on my server some INF e-books. They originally came > from the Sybil Library project. > > There are also some Object Pascal and OOP re

Re: [fpc-pascal] Re: [fpc-devel] FPJSONRTTI: Case insensitive.

2013-01-24 Thread silvioprog
Done: http://bugs.freepascal.org/view.php?id=23745 2013/1/24 silvioprog > 2013/1/24 Michael Van Canneyt > >> [...] >> Maybe we can have a property for this. >> > > This would be an excellent idea. This new property could be to False by > default. > > I'll open an issue about this. > -- Silvio

Re: [fpc-pascal] Re: [fpc-devel] FPJSONRTTI: Case insensitive.

2013-01-24 Thread silvioprog
2013/1/24 Michael Van Canneyt > [...] > Maybe we can have a property for this. This would be an excellent idea. This new property could be to False by default. I'll open an issue about this. -- Silvio Clécio My public projects - github.com/silvioprog _

[fpc-pascal] Re: [fpc-devel] FPJSONRTTI: Case insensitive.

2013-01-24 Thread Michael Van Canneyt
On Thu, 24 Jan 2013, silvioprog wrote: Hello, I have this JSON: { "id": 1, "name": "Silvio Clécio" } JSON is JavaScript and JavaScript *is* case sensitive. But you can use TJSONObject.IndexOfName with CaseInsentive to True: Function IndexOfName(const AName: TJSONStringType; CaseInsen

Re: [fpc-pascal] Embeded ARM Examples.

2013-01-24 Thread Michael Ring
Hi Koenraad I have also started recently on using arm-embedded on an STM32 based board, I have build arm-embedded for mac a few days ago and the windows version two or three weeks ago. So on what OS do you need the arm crosscompiler (it could be mac or linux (more likely) but I think you actu

[fpc-pascal] FPJSONRTTI: Case insensitive.

2013-01-24 Thread silvioprog
Hello, I have this JSON: { "id": 1, "name": "Silvio Clécio" } And my object is: TPerson = class private FID: Int64; FName: string; published property ID: Int64 read FID write FID; property Name: string read FName write FName; end; But, FPJSONRTTI don't find the fields, except if I chan

[fpc-pascal] Sybil Library - OS/2 and other INF e-books

2013-01-24 Thread Graeme Geldenhuys
Hi, I know there are still a few of you developing for the OS/2 platform. So I made available on my server some INF e-books. They originally came from the Sybil Library project. There are also some Object Pascal and OOP related books. http://opensoft.homeip.net/~graemeg/inf_books/ To view th

Re: [fpc-pascal] Favourite Pascal books

2013-01-24 Thread Graeme Geldenhuys
Hi Patrick, > I am just putting together an order for abebooks. They have a million > and one Pascal books. I can't decide on which ones to buy. I also forgot to mention in my previous post, there are some more sources of information. I have some e-books in INF format. They came from the Sybil

Re: [fpc-pascal] Compiling arm-embedded fpc

2013-01-24 Thread Jeppe Græsdal Johansen
Den 24-01-2013 12:16, Koenraad Lelong skrev: On 24-01-13 11:24, Jeppe Græsdal Johansen wrote: Looks like a memory corruption problem. I just tried to compile trunk with 2.6.0 as a starting compiler on win32 and had no problems(apart from the broken RTL). What starting compiler and what os/cpu a

Re: [fpc-pascal] Compiling arm-embedded fpc

2013-01-24 Thread Koenraad Lelong
On 24-01-13 11:24, Jeppe Græsdal Johansen wrote: Looks like a memory corruption problem. I just tried to compile trunk with 2.6.0 as a starting compiler on win32 and had no problems(apart from the broken RTL). What starting compiler and what os/cpu are you on? Hi, What do you mean with memor

Re: [fpc-pascal] Compiling arm-embedded fpc

2013-01-24 Thread Jeppe Græsdal Johansen
Looks like a memory corruption problem. I just tried to compile trunk with 2.6.0 as a starting compiler on win32 and had no problems(apart from the broken RTL). What starting compiler and what os/cpu are you on? Den 23-01-2013 19:28, Koenraad Lelong skrev: On 23-01-13 17:20, Tomas Hajny wrote

Re: [fpc-pascal] Embeded ARM Examples.

2013-01-24 Thread Koenraad Lelong
On 22-01-13 13:36, delph...@smythconsulting.net wrote: Hi All, I’ve been a user of Lazarus for years now and will soon want to write some code to run on Embedded ARM ( specifically an ARM Cortex M3 ) using an LPC1343. I’m new to this so i would appreciate someone pointing me in the right directio

Re: [fpc-pascal] Linker Error: what does this mean?

2013-01-24 Thread Tomas Hajny
On Wed, January 23, 2013 23:56, Gerhard Scholz wrote: Hello, > thanks for the hint with the -Xe parameter (the external linker is damned > slow!), now it compiles. . . I'm glad that the external linker helped. Indeed, slowness of the external linker is one of reasons for using the internal on