Re: Thanks [Re: [fpc-devel] Just my luck - trying to build fpc, got yet another error]

2011-06-15 Thread Marco van de Voort
In our previous episode, Martin said: > > In our previous episode, Martin said: > >> I was trying to upgrade fpc (sv) on an older fedora > >> > >> Any ideas? > > 1) obviously, install data2inc :-) > Add/Remove Software under my fedora13 does not find anything, if I > search for data2inc Bootstrap

Re: Thanks [Re: [fpc-devel] Just my luck - trying to build fpc, got yet another error]

2011-06-15 Thread Martin
On 15/06/2011 22:35, Jonas Maebe wrote: ) Add/Remove Software under my fedora13 does not find anything, if I search for data2inc It's part of any default FPC install. Oh, ok. I haven't installed fpc in a long time, only updated from svn. ___ fpc-

Re: Thanks [Re: [fpc-devel] Just my luck - trying to build fpc, got yet another error]

2011-06-15 Thread Jonas Maebe
On 15 Jun 2011, at 23:29, Martin wrote: > On 15/06/2011 21:31, Marco van de Voort wrote: >> In our previous episode, Martin said: >>> I was trying to upgrade fpc (sv) on an older fedora >>> >>> Any ideas? >> 1) obviously, install data2inc :-) > Add/Remove Software under my fedora13 does not find

Thanks [Re: [fpc-devel] Just my luck - trying to build fpc, got yet another error]

2011-06-15 Thread Martin
On 15/06/2011 21:31, Marco van de Voort wrote: In our previous episode, Martin said: I was trying to upgrade fpc (sv) on an older fedora Any ideas? 1) obviously, install data2inc :-) Add/Remove Software under my fedora13 does not find anything, if I search for data2inc 2) Try to skip by p

Re: [fpc-devel] Just my luck - trying to build fpc, got yet another error

2011-06-15 Thread Marco van de Voort
In our previous episode, Martin said: > I was trying to upgrade fpc (sv) on an older fedora > > Any ideas? 1) obviously, install data2inc :-) 2) Try to skip by passing DATA2INC=echo 3) touch the .inc file so that it is newer, and make won't try to rebuild. ___

[fpc-devel] Just my luck - trying to build fpc, got yet another error

2011-06-15 Thread Martin
I was trying to upgrade fpc (sv) on an older fedora Any ideas? /usr/bin/ld: warning: ./link.res contains output sections; did you forget -T? /home/martin/fpc/svn/trunk/compiler/ppc386 -Ur -Xs -O2 -n -S2h -Fu/home/martin/fpc/svn/trunk/rtl/units/i386-linux -Fu/home/martin/fpc/svn/trunk/packages

Re: [fpc-devel] suggestion for new parameter regarding cross compile

2011-06-15 Thread Jonas Maebe
On 15 Jun 2011, at 15:21, ik wrote: FPC have at the moment the tag -XP to provide prefix for mostly cross compile code for binutils. I think that there should be also something like -XSU (-XS already taken) to provide suffix for binutils. For example, in my Arch Linux that is 64 bit, the 32

[fpc-devel] suggestion for new parameter regarding cross compile

2011-06-15 Thread ik
Hello, FPC have at the moment the tag -XP to provide prefix for mostly cross compile code for binutils. I think that there should be also something like -XSU (-XS already taken) to provide suffix for binutils. For example, in my Arch Linux that is 64 bit, the 32 bit binutils have "ld86" and "as86

Re: [fpc-devel] Hi listers, , , , I am trying to translate a C header with H2PAS

2011-06-15 Thread Hans-Peter Diettrich
Skybuck Flying schrieb: K_quotedbl = '\"'; This of course should read K_quotedbl = '"'; { also define the escape sequences that have keys associated } All the C escape sequences have to be translated into Pascal char/string, e.g.: { 8 } const K_BS = '\b'; should read

Re: [fpc-devel] Problem with {$BOOLEVAL ON/OFF} and it's default.

2011-06-15 Thread Hans-Peter Diettrich
Skybuck Flying schrieb: Conclusion: it works per code section however there is a potential problem: It might not be possible to return to the "default settings" ?!? Perhaps there exist Push and Pop directives? (untested) DoDi ___ fpc-devel mailli

Re: [fpc-devel] Problem with {$BOOLEVAL ON/OFF} and it's default.

2011-06-15 Thread Jonas Maebe
On 15 Jun 2011, at 10:58, Martin Schreiber wrote: The CHECKPOINTER directive can be used with DEFAULT: " {$CHECKPOINTER ON} [...] {$CHECKPOINTER DEFAULT} " Maybe that method can be implemented for other directives too? The generic way to temporarily change local switches (and verbosity) is

Re: [fpc-devel] Problem with {$BOOLEVAL ON/OFF} and it's default.

2011-06-15 Thread Martin Schreiber
On Wednesday 15 June 2011 01:58:05 Skybuck Flying wrote: > Solved: > > The solution required one little line fixed: > > {ifopt b+} > [...] The CHECKPOINTER directive can be used with DEFAULT: " {$CHECKPOINTER ON} [...] {$CHECKPOINTER DEFAULT} " Maybe that method can be implemented for other direct

Re: [fpc-devel] Problem with {$BOOLEVAL ON/OFF} and it's default.

2011-06-15 Thread Skybuck Flying
Solved: The solution required one little line fixed: {ifopt b+} Anyway I have improved the test program somewhat, because it was a bit shitty, it's still a little bit shitty but not as shitty ! ;) =D // *** Begin of Test Program *** program TestProgram; {$APPTYPE CONSOLE} { Test complete b