Re: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Marco van de Voort
In our previous episode, Jos? Mejuto said: I'm stuck trying to build fpc win64 svn. As a bootstrap I'm using 2.4.3 from a snapshot at http://www.hu.freepascal.org/lazarus/ Strictly speaking only 2.4.2 will do. This snapshot is missing the cmp.exe file, so I had used the win32 one. After

Re: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Vincent Snijders
2011/1/5 Marco van de Voort mar...@stack.nl: This snapshot is missing the cmp.exe file, so I had used the win32 one. After an error about not found as.exe I had used the win32 version too, but now I'm stuck at an ld.exe problem. The win32 version of ld.exe does not have a pei-x86-64 target so

Re: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Marco van de Voort
In our previous episode, Vincent Snijders said: This snapshot is missing the cmp.exe file, so I had used the win32 one. After an error about not found as.exe I had used the win32 version too, but now I'm stuck at an ld.exe problem. The win32 version of ld.exe does not have a pei-x86-64

Re: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Vincent Snijders
2011/1/5 Marco van de Voort mar...@stack.nl: I would not build the fp ide. Does that remark apply to 2.4.x or 2.5.1? 2.5.1, because AFAIK, Pierre's work that requires the external linker on win64 is done in trunk only and not yet merged to 2.4.2. Vincent

Re: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Marco van de Voort
In our previous episode, Vincent Snijders said: I would not build the fp ide. Does that remark apply to 2.4.x or 2.5.1? 2.5.1, because AFAIK, Pierre's work that requires the external linker on win64 is done in trunk only and not yet merged to 2.4.2. Because I made a makefile change

Re[2]: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread José Mejuto
Hello Darius, Wednesday, January 5, 2011, 12:36:40 AM, you wrote: DB Doesn't mingw64 provide as and ld? Yes but everywhere in the wiki binutils is referenced, mingw* is named only for crosscompiling and with the known incompatibility about different ports (mingw, cygwin, ...) I was looking for

Re[2]: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread José Mejuto
Hello FPC-Pascal, Wednesday, January 5, 2011, 10:26:12 AM, you wrote: VS 2011/1/5 Marco van de Voort mar...@stack.nl: This snapshot is missing the cmp.exe file, so I had used the win32 one. After an error about not found as.exe I had used the win32 version too, but now I'm stuck at an ld.exe

Re: Re[2]: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread Darius Blaszyk
On Jan 5, 2011, at 12:07 PM, José Mejuto wrote: Anyway I was looking for mingw binutils for win64 in the website without success, only win32 builds. http://sourceforge.net/projects/mingw/files/MinGW/BaseSystem/GNU-Binutils/binutils-2.21/ try: http://mingw-w64.sourceforge.net/

[fpc-pascal] complex ini like syntax parser

2011-01-05 Thread ik
Hello, I'm looking for a setting parser for something like this: --- snips - [foo](!) bar = 1 baz = fff ; comment ; comment #include file #include = section --- snips Before I'll do this the hard way and write something for myself, is there something like that existed

Re[4]: [fpc-pascal] Help building fpc svn Win64

2011-01-05 Thread José Mejuto
Hello FPC-Pascal, Wednesday, January 5, 2011, 4:50:20 PM, you wrote: DB On Jan 5, 2011, at 12:07 PM, José Mejuto wrote: Anyway I was looking for mingw binutils for win64 in the website without success, only win32 builds.

[fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread ik
2011/1/5 Zaher Dirkey parm...@gmail.com 2011/1/5 ik ido...@gmail.com Before I'll do this the hard way and write something for myself, is there something like that existed already, or even something that implement part of it, so I could based my code on it instead of writing one for myself ?

[fpc-pascal] JSON - RTTI streaming.

2011-01-05 Thread Michael Van Canneyt
Hello, For those of you that need JSON support: I have committed support for streaming published properties (properties for which RTTI is generated) from objects to JSON and vice versa, in a unit fpjsonrtti. Not the full streaming as implemented in the classes system is supported: - No

[fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread leledumbo
If you want something fast, pyacc and plex distributed with fpc can be an option. But I suggest writing your own since that way you'll have a full control of its features. -- View this message in context:

Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread Jorge Aldo G. de F. Junior
i have a small parser called PON Compiler that stores objects into a file using the following syntax : Instance nameofinstance Of classofinstance ( propertiesofsuchinstance ) Begin other instances here etc End. properties can itself point to instances wich can be declared in place. with this