[lazarus] Compile without link

2006-02-22 Thread SteveG
Can anybody tell me how (if possible) to compile a Laz program, but skip the linking step ? _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

Re: [lazarus] Compile without link

2006-02-22 Thread Christian Iversen
On Wednesday 22 February 2006 13:18, SteveG wrote: Can anybody tell me how (if possible) to compile a Laz program, but skip the linking step ? I'm not sure exactly how to do that. What are you trying to do? -- Regards, Christian Iversen

Re: [lazarus] Compile without link

2006-02-22 Thread Florian Klaempfl
SteveG wrote: I have noticed that many of my 'typos' are caught at the compile stage - then have to wait for the linker (for no reason at this point, since I already know I have problems) If the program doesn't compile, it isn't linked? -s does the trick on the command line. Christian

Re: [lazarus] Compile without link

2006-02-22 Thread SteveG
sounds close to what I am after - is there any way to just compile (not link) even if no errors found? - same thing, just testing for basic errors in ongoing code Florian Klaempfl wrote: SteveG wrote: I have noticed that many of my 'typos' are caught at the

Re: [lazarus] Compile without link

2006-02-22 Thread Graeme Geldenhuys
The -s option in the Project - Compiler Options - Other - Custom options will do that, but maybe a option in the Run menu would be nice, or some keyboard shortcut. Regards, - Graeme - On 2/22/06, SteveG [EMAIL PROTECTED] wrote: sounds close to what I am after - is there any way to just

Re: [lazarus] Compile without link

2006-02-22 Thread SteveG
Exactly - a shortcut (perhaps Shift-Ctrl-F9) to compile only - otherwise it is necessary to insert / remove the compiler switch (which sort of defeats the fast check attempt) Graeme Geldenhuys wrote: The -s option in the Project - Compiler Options - Other - Custom options will do that, but

Re: [lazarus] Compile without link

2006-02-22 Thread Uwe Grauer
SteveG wrote: Exactly - a shortcut (perhaps Shift-Ctrl-F9) to compile only - otherwise it is necessary to insert / remove the compiler switch (which sort of defeats the fast check attempt) Graeme Geldenhuys wrote: The -s option in the Project - Compiler Options - Other - Custom options will

Re: [lazarus] Compile without link

2006-02-22 Thread Graeme Geldenhuys
I'll see if I can implement something like this and post the patch. Regards, - Graeme - On 2/22/06, Uwe Grauer [EMAIL PROTECTED] wrote: SteveG wrote: Exactly - a shortcut (perhaps Shift-Ctrl-F9) to compile only - otherwise it is necessary to insert / remove the compiler switch (which

Re: [lazarus] Compile without link

2006-02-22 Thread Paul Michell
This would be similar to Delphi's syntax check which would be a nice to have feature. Regards, Paul On Wednesday 22 February 2006 13:19, SteveG wrote: Exactly - a shortcut (perhaps Shift-Ctrl-F9) to compile only - otherwise it is necessary to insert / remove the compiler switch (which sort of