Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread Henry Vermaak
2009/7/20 greim gr...@schleibinger.com: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, i just tried to compile a cross compiler linux 386 to linux arm (Suse 11.1 to a SSV DIL Net PC / 9200 Atmel AT91RM9200) I downloades the latest : . Download Daily Source Snapshot of the Fixes

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread Jonas Maebe
On 21 Jul 2009, at 11:06, Henry Vermaak wrote: 2009/7/20 greim gr...@schleibinger.com: Then i started the compiler (as root ???) with : make clean all CPU_TARGET=arm OS_TARGET=linux BINUTILSPREFIX=/usr/arm/bin/arm-unknown-linux-gnu The compiler (2.2.4) was running some minutes. But no ppcarm

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread greim
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hallo Henry, i just tried to compile a cross compiler linux 386 to linux arm (Suse 11.1 to a SSV DIL Net PC / 9200 Atmel AT91RM9200) I downloades the latest : . Download Daily Source Snapshot of the Fixes Tree Entire fpc sources archive

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread Jonas Maebe
On 21 Jul 2009, at 11:37, greim wrote: The compiler seems to run, and making the s-file, but assembling the s-file failed, with more then 20 error messages. like makuslinux3:/home/markus/arm # ppcrossarm -B -Aas hallo.pas Free Pascal Compiler version 2.3.1 [2009/07/21] for arm Copyright (c)

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread Henry Vermaak
2009/7/21 greim gr...@schleibinger.com: so thanks i am some steps further i now installed the arm binutils from the Suse distribution ist version 2.19 instead of 2.16 and installed in /opt/cross/arm-linux/bin/ by Yast So i now mad a call: make all CPU_TARGET=arm OS_TARGET=linux

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread Carsten Bager
When I build the compiler i use this - Linux #!/bin/sh export PATH=$PATH:/pp/bin export PATH=$PATH:/Fpc/ArmBin/218 make clean all OS_TARGET=linux CPU_TARGET=arm PP=/pp/bin/fpc BINUTILSPREFIX=arm-linux- Windows PATH =

Re: [fpc-pascal] ARM crosscompiler again

2009-07-21 Thread greim
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Carsten et. al. thanks for your help. I think i am to stupid to set the right paths and links. Maybe Suse is a little bit strange here. Finally i copied the file Carsten has provided at http://www.freepascal.dk/ and it compiles... My first

[fpc-pascal] Case insensitive comparison of strings with non-ascii characters

2009-07-21 Thread Luiz Americo Pereira Camara
Hi, I'm trying to fix bug http://bugs.freepascal.org/view.php?id=14135 but could not get a way to do case insensitive comparison of UTF8 strings with non ascii characters (in the test even ansi strings failed). See the attached test program. I tried StrIComp, AnsiCompareText, CompareText

Re: [fpc-pascal] Case insensitive comparison of strings with non-ascii characters

2009-07-21 Thread JoshyFun
Hello FPC-Pascal, Tuesday, July 21, 2009, 6:45:03 AM, you wrote: LAPC I'm trying to fix bug LAPC http://bugs.freepascal.org/view.php?id=14135 but LAPC could not get a way to do case insensitive comparison of UTF8 strings LAPC with non ascii characters (in the test even ansi strings failed).

Re: [fpc-pascal] Case insensitive comparison of strings with non-ascii characters

2009-07-21 Thread Luiz Americo Pereira Camara
JoshyFun escreveu: Hello FPC-Pascal, Tuesday, July 21, 2009, 6:45:03 AM, you wrote: LAPC I'm trying to fix bug LAPC http://bugs.freepascal.org/view.php?id=14135 but LAPC could not get a way to do case insensitive comparison of UTF8 strings LAPC with non ascii characters (in the test even

Re: [fpc-pascal] Persistent blocks in Lazarus

2009-07-21 Thread Martin Friebe
[cross-posted to lazarus list = please join there to continue the topic] I am trying to figure out how they work - Block is kept, if cursor moves away. (obvious) - Shift Cursur keys: - Block is extended if cursor was next to block - New block is started , if cursor was away from block.