Re: [fpc-pascal] char in [range]

2009-12-07 Thread Vincent Snijders
ik schreef: Yes :) OT: My native language is non latin based, and you write what you hear (unlike latin based languages). Reading http://en.wikipedia.org/wiki/Orthographic_depth, I would expect that in Hebrew, one cannot just write what one hears, unlike some (but not all) Latin based lan

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Dariusz Mazur
Hartmut Eilers pisze: Hallo List, thanks for your first and fast response. According to the suggestions from Marco and Jonas I try it this way: ubu...@kubuntu904:~/OpenLabTools/DeviceServer$ /usr/local/bin/ppcrossarm -CfFPA -dUSB92 -CaARMEB -CpARMV5 -darm -dFPC_ARMEL -gl -Fu../webserver -Fu..

Re: [fpc-pascal] char in [range]

2009-12-07 Thread ik
http://ik.homelinux.org/ On Mon, Dec 7, 2009 at 4:43 PM, Jonas Maebe wrote: > > On 07 Dec 2009, at 15:19, Frank Peelo wrote: > > On 07/12/2009 13:40, ik wrote: >> >>> Now it works properly. However it seems like the not is for the "in" >>> rather then the key if it inside the pertness. >>> >> >

Re: [fpc-pascal] Re: Inconsistency detected by ld.so

2009-12-07 Thread Jonas Maebe
On 07 Dec 2009, at 18:05, Seth Grover wrote: http://bugs.freepascal.org/bug_view_advanced_page.php?bug_id=15278 I have logged a bug for this. I can't see how it's anything I'm doing personally wrong (see my "Steps to Reproduce" in the bug report). I can't see what FPC is doing wrong either.

[fpc-pascal] Re: Inconsistency detected by ld.so

2009-12-07 Thread Seth Grover
http://bugs.freepascal.org/bug_view_advanced_page.php?bug_id=15278 I have logged a bug for this. I can't see how it's anything I'm doing personally wrong (see my "Steps to Reproduce" in the bug report). -SG -- This email is fiction. Any resemblance to actual events or persons living or dead is p

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Marco van de Voort
In our previous episode, Jonas Maebe said: > > I don't know whether this means that you are missing some development > package, whether this means that you should never explicitly link any > program against libdl on uclibc systems, or something else. The libc+dl separation might be a glibcism

Re: [fpc-pascal] char in [range]

2009-12-07 Thread Jonas Maebe
On 07 Dec 2009, at 15:19, Frank Peelo wrote: On 07/12/2009 13:40, ik wrote: Now it works properly. However it seems like the not is for the "in" rather then the key if it inside the pertness. "pertness"? I would love to know what that was before babelfish got it... I put my money on an

Re: [fpc-pascal] char in [range]

2009-12-07 Thread Frank Peelo
On 07/12/2009 13:40, ik wrote: You are right, my bad. I wrote it if (not Key in ['a'..'z']) then Rather then if not (Key in ['a'..'z') then In lazarus under OnKeyPress. Now it works properly. However it seems like the not is for the "in" rather then the key if it inside the pertness. "pert

Re: [fpc-pascal] char in [range]

2009-12-07 Thread ik
You are right, my bad. I wrote it if (not Key in ['a'..'z']) then Rather then if not (Key in ['a'..'z') then In lazarus under OnKeyPress. Now it works properly. However it seems like the not is for the "in" rather then the key if it inside the pertness. Ido http://ik.homelinux.org/ On Mon,

Re: [fpc-pascal] char in [range]

2009-12-07 Thread Jonas Maebe
On 07 Dec 2009, at 14:01, ik wrote: I'm using FPC 2.5.1 and I'm trying to do the following: if not (Char in ['a'..'z']) however fpc gives me an error of type mismatch for the "in" directive. Why can't I use the in directive on a char ? You made a mistake somewhere. *Always* post a source

[fpc-pascal] char in [range]

2009-12-07 Thread ik
Hello, I'm using FPC 2.5.1 and I'm trying to do the following: if not (Char in ['a'..'z']) however fpc gives me an error of type mismatch for the "in" directive. Why can't I use the in directive on a char ? Thanks, Ido http://ik.homelinux.org/ ___ fp

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Jonas Maebe
On 07 Dec 2009, at 13:41, Hartmut Eilers wrote: ubu...@kubuntu904:~/OpenLabTools/DeviceServer$ /usr/local/bin/ppcrossarm -CfFPA -dUSB92 -CaARMEB -CpARMV5 -darm -dFPC_ARMEL -gl -Fu../webserver -Fu../PhysMach -Fu../divLibs/pwu-1.6.0.2-src/main/ -FL/usr/xtools/arm-unknown-linux-uclibc/arm-unknow

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Hartmut Eilers
Hallo List, thanks for your first and fast response. According to the suggestions from Marco and Jonas I try it this way: ubu...@kubuntu904:~/OpenLabTools/DeviceServer$ /usr/local/bin/ppcrossarm -CfFPA -dUSB92 -CaARMEB -CpARMV5 -darm -dFPC_ARMEL -gl -Fu../webserver -Fu../PhysMach -Fu../divLibs/

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Jonas Maebe
On 07 Dec 2009, at 10:46, Hartmut Eilers wrote: I try to crosscompile one of my projects to the arm based USB9263 from Calao Systems (http://www.calao-systems.com/articles.php?lng=en&pg=5932) I get the following linking error: ubu...@kubuntu904:~/OpenLabTools/DeviceServer$ /usr/local/bin/ppcr

Re: [fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Marco van de Voort
In our previous episode, Hartmut Eilers said: > > I try to crosscompile one of my projects to the arm based > USB9263 from Calao Systems > (http://www.calao-systems.com/articles.php?lng=en&pg=5932) > > I get the following linking error: > > /usr/local/lib/fpc/2.4.0/units/arm-linux/rtl/cprt0.o: I

[fpc-pascal] Linking Problems while cross compiling for arm

2009-12-07 Thread Hartmut Eilers
Hallo List, I try to crosscompile one of my projects to the arm based USB9263 from Calao Systems (http://www.calao-systems.com/articles.php?lng=en&pg=5932) I get the following linking error: ubu...@kubuntu904:~/OpenLabTools/DeviceServer$ /usr/local/bin/ppcrossarm -CfFPA -dUSB92 -CaARMEB -CpARMV

Re: [fpc-pascal] Help porting DeCAL library

2009-12-07 Thread Vincent Snijders
leledumbo schreef: http://old.nabble.com/file/p26671529/decal-1.zip Here is a FPC conversion of DeCAL library. However, many things still don't work. Please see todo.txt. You can find (the same, or another) port to FPC in http://svn.freepascal.org/cgi-bin/viewvc.cgi/contrib/decal/?limit_change