Re: [fpc-devel] 'fpmake install' should do what?

2008-12-04 Thread Graeme Geldenhuys
On Thu, Dec 4, 2008 at 6:02 PM, Peter Vreman <[EMAIL PROTECTED]> wrote: > > To see what fpmake does add --verbose or --debug. ah, the -v option showed where the files were copied to... Needless to say, the wrong location, as shown below. - $ ./fpmake install -v -B

Re: [fpc-devel] FPC on Arm7

2008-12-04 Thread Nataraj S Narayan
Hi Can we write the RTL as stand alone without the backing of an OS? regards Nataraj On 12/4/08, Jonas Maebe <[EMAIL PROTECTED]> wrote: > > On 04 Dec 2008, at 05:41, Nataraj S Narayan wrote: > >> Is there a chance of using fpc on Arm7 boards without OS? > > When you write an rtl (system unit)

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-04 Thread Joost van der Sluis
Op woensdag 03-12-2008 om 18:39 uur [tijdzone +0100], schreef Joost van der Sluis: > Op woensdag 03-12-2008 om 15:06 uur [tijdzone +], schreef Martin > Friebe: > > Joost van der Sluis wrote: > > > Op woensdag 03-12-2008 om 13:09 uur [tijdzone +0100], schreef Michael > > > Van Canneyt: > > >

Re: [fpc-devel] Multithreading wait for

2008-12-04 Thread Mattias Gaertner
On Thu, 4 Dec 2008 11:59:40 +0100 Jonas Maebe <[EMAIL PROTECTED]> wrote: >[...] > >> Unless it's already signalled, then it should run right through. > > It was changed in 2.2.0: > http://wiki.freepascal.org/User_Changes_2.2.0#RTLEvent_persistence Thanks. Michael, can you add that hint to the d

Re: [fpc-devel] 'fpmake install' should do what?

2008-12-04 Thread Peter Vreman
> Hi, > > While trying to only recompile and install the 'fcl-fpcunit' > directory, I played around with the fpmake build system. I'm using FPC > 2.2.3. > > My directory layout is as follows: > > /opt/fpc_2.2.3/ > ^ install location for: make install > INSTALL_PREFIX=/opt/fpc_2.2.

[fpc-devel] 'fpmake install' should do what?

2008-12-04 Thread Graeme Geldenhuys
Hi, While trying to only recompile and install the 'fcl-fpcunit' directory, I played around with the fpmake build system. I'm using FPC 2.2.3. My directory layout is as follows: /opt/fpc_2.2.3/ ^ install location for: make install INSTALL_PREFIX=/opt/fpc_2.2.3 /opt/fpc_2.2.3/s

Re: [fpc-devel] how to recompile & install only a section of the FCL

2008-12-04 Thread Graeme Geldenhuys
On Thu, Dec 4, 2008 at 4:11 PM, Jonas Maebe <[EMAIL PROTECTED]> wrote: > > make all > make install INSTALL_PREFIX=/opt/fpc_2.2.3 > > from the fcl-fpcunit directory. Thanks, I'll try that. I have also been playing with the 'fpmake' build system. I can build and archive everything without issues in

Re: [fpc-devel] how to recompile & install only a section of the FCL

2008-12-04 Thread Jonas Maebe
On 04 Dec 2008, at 15:06, Graeme Geldenhuys wrote: Can I somehow compile and install just the 'fcl-fpcunit' code? Run make all make install INSTALL_PREFIX=/opt/fpc_2.2.3 from the fcl-fpcunit directory. My FPC is currently checked out into /opt/fpc_2.2.3/src/ and I install it to /opt/fpc_

[fpc-devel] how to recompile & install only a section of the FCL

2008-12-04 Thread Graeme Geldenhuys
Hi, I'm working on some minor improvements to 'fcl-fpcunit'. What is the correct process to test my changes? Surely I don't need to recompile and install the *whole* FPC. This is quite annoying when I keep making small changes and want to test. Can I somehow compile and install just the 'fcl-fpc

[fpc-devel] merge rev12290

2008-12-04 Thread Felipe Monteiro de Carvalho
Hello, Please merge rev12290 to 2.2.3 http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=rev&revision=12290 Is it possible to only merge the fix and not the test case? thanks, -- Felipe Monteiro de Carvalho ___ fpc-devel maillist - fpc-devel@lists.f

Re: [fpc-devel] Multithreading wait for

2008-12-04 Thread Jonas Maebe
On 04 Dec 2008, at 11:36, Mattias Gärtner wrote: Zitat von Vinzent Höfler <[EMAIL PROTECTED]>: Mattias Gaertner wrote: On Wed, 03 Dec 2008 19:41:12 +0100 Vinzent Höfler <[EMAIL PROTECTED]> wrote: If I understand RTLEventWaitFor correct, then it waits until another thread calls RTLeventSet

Re: [fpc-devel] Multithreading wait for

2008-12-04 Thread Marco van de Voort
In our previous episode, Mattias G?rtner said: > Yes, that works under Linux. But the documentation does not mention it, so I'm > not sure if this works under all platforms. > Maybe some other OS users can try if the following code runs through: Uses cthreads; > var > e: PRTLEvent; > begin >

Re: [fpc-devel] FPC on Arm7

2008-12-04 Thread Jonas Maebe
On 04 Dec 2008, at 05:41, Nataraj S Narayan wrote: Is there a chance of using fpc on Arm7 boards without OS? When you write an rtl (system unit) that works without an OS on that platform. I wish I had a fpc compiler like armpit scheme. It's not about the compiler, but about the run ti

Re: [fpc-devel] Multithreading wait for

2008-12-04 Thread Mattias Gärtner
Zitat von Vinzent Höfler <[EMAIL PROTECTED]>: > Mattias Gaertner wrote: > > On Wed, 03 Dec 2008 19:41:12 +0100 > > Vinzent Höfler <[EMAIL PROTECTED]> wrote: > > > > If I understand RTLEventWaitFor correct, then it waits until another > > thread calls RTLeventSetEvent. > > Unless it's already sig

Re: [fpc-devel] FPC on Arm7

2008-12-04 Thread Nataraj S Narayan
Hi I use Atmel AT91SAM7se512 evaluation board. This doesn't have MMU. ITC don't we need to write code for MMU? regards Nataraj On Thu, Dec 4, 2008 at 3:18 PM, Michael Schnell <[EMAIL PROTECTED]> wrote: > Does fpc need memory management hardware ? The compiler supposedly does not > but what abou

Re: [fpc-devel] FPC on Arm7

2008-12-04 Thread Michael Schnell
Does fpc need memory management hardware ? The compiler supposedly does not but what about the RTL ? -Michael ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel