Re: [fpc-pascal] Inherit interface from 2 interfaces

2011-04-06 Thread Juha (gmail)
Zaher Dirkey kirjoitti keskiviikko, 6. huhtikuuta 2011 19:37:04: > Can i do that? > type > IIntf3 = interface(IIntf11, IIntf2) > > end; No but you can do: type MyClass = class(IIntf11, IIntf2) end; Juha ___ fpc-pascal maillist - f

Re: [fpc-pascal] Re: Inherit interface from 2 interfaces

2011-04-06 Thread Zaher Dirkey
On Wed, Apr 6, 2011 at 8:42 PM, leledumbo wrote: > Err... yes? Why don't you just try? > > I tried before my post and failed, the idea is there any way enable it (like directive to add it), or it is implmented in the next versions of FPC, or only the answer is No :) Regards -- Zaher Dirkey ___

Re: [fpc-pascal] Creating windows cross arm-linux ppcarm compiler.

2011-04-06 Thread Felipe Monteiro de Carvalho
For Android the good value is -meabi=5 which supports all devices in the market. And don't forget to build the cross-compiler with software floating point. -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http:/

[fpc-pascal] Re: Inherit interface from 2 interfaces

2011-04-06 Thread leledumbo
Err... yes? Why don't you just try? -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/Inherit-interface-from-2-interfaces-tp4286712p4286988.html Sent from the Free Pascal - General mailing list archive at Nabble.com. ___

Re: [fpc-pascal] Creating windows cross arm-linux ppcarm compiler.

2011-04-06 Thread Marco van de Voort
In our previous episode, Henry Vermaak said: > I think Marco made these: > > ftp://ftp.freepascal.org/pub/fpc/contrib/cross/binutils-2.20-arm-linux-elf.zip > > Note that it calls the assembler with -meabi=4. You may have to change > this. I use this wrapper for that http://svn.freepascal.org/

[fpc-pascal] Inherit interface from 2 interfaces

2011-04-06 Thread Zaher Dirkey
Can i do that? type IIntf3 = interface(IIntf11, IIntf2) end; Thanks in advance. -- Zaher Dirkey ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Creating windows cross arm-linux ppcarm compiler.

2011-04-06 Thread Henry Vermaak
On 06/04/11 17:04, Felipe Monteiro de Carvalho wrote: The first step would be obtaining the correct binutils. In Linux I just install via urpmi. There are some instructions to build from source in the wiki. Maybe there are precompiled ones, but I dont know where. I think Marco made these: ftp:

Re: [fpc-pascal] Creating windows cross arm-linux ppcarm compiler.

2011-04-06 Thread Felipe Monteiro de Carvalho
The first step would be obtaining the correct binutils. In Linux I just install via urpmi. There are some instructions to build from source in the wiki. Maybe there are precompiled ones, but I dont know where. After that you need a working install of FPC 2.4.2, download FPC 2.5.2 trunk from svn an

[fpc-pascal] Creating windows cross arm-linux ppcarm compiler.

2011-04-06 Thread Amit Bueno
How do I build windows ppcarm cross arm-linux fpc? Regards, Amit ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Compiling android example

2011-04-06 Thread Felipe Monteiro de Carvalho
On Wed, Apr 6, 2011 at 11:41 AM, Amit Bueno wrote: > B.  Installed eclipse with the ADT pluging for android I don't use Eclipse, and therefore the instructions do not cover using it. ANT is what builds the Java code. You need to have a working installation of ANT and all java packages that i

[fpc-pascal] Compiling android example

2011-04-06 Thread Amit Bueno
http://wiki.lazarus.freepascal.org/Android_Interface/Native_Android_GUI I've downloaded the example of the android application, done the following: A. Installed android latest sdk B. Installed eclipse with the ADT pluging for android C. Downloaded the TurboChessClock4Android e

Re: [fpc-pascal] regex unit and word boundaries

2011-04-06 Thread Ben Smith
On Wed, Apr 6, 2011 at 9:32 AM, ik wrote: > > What's wrong with /a word/ (without the slash) ? Sorry, I don't understand. > But if the word can exists in a middle of a text, and you do not look for a > pattern, then regex is not what you should use, but "pos" instead. Because > pos is more effic

Re: [fpc-pascal] regex unit and word boundaries

2011-04-06 Thread ik
On Wed, Apr 6, 2011 at 01:48, Ben Smith wrote: > Hi, > > Does the Regex unit included with FCL support word boundaries? eg: the > \b tag as used by some other regex libraries. If the Regex unit does > support it, what syntax must I use? > > I know about the ^ (beginning of line) and $ (for end of