Re: [fpc-pascal] excluding files or dirs from fpcmake packaging

2008-07-20 Thread Marc Santhoff
Am Montag, den 21.07.2008, 07:43 +0200 schrieb Peter Vreman: > > Hi, > > > > when using fpcmake to create distribution packages anything in the > > source dir is getting packed into the "zipsourceinstall"-package. > > > > Is it possible to exclude some selected files or directories by naming > > th

Re: [fpc-pascal] Getting fast output

2008-07-20 Thread Peter Vreman
> > Is there any way so that Write(Ln) doesn't flush the buffer after each call > (as if it's called to write to a file, I knew it from rtl's file handling > source), but only when Flush is called? I found some maniac's code that does > it at assembler level, but of course it's platform dependant (

Re: [fpc-pascal] excluding files or dirs from fpcmake packaging

2008-07-20 Thread Peter Vreman
> Hi, > > when using fpcmake to create distribution packages anything in the > source dir is getting packed into the "zipsourceinstall"-package. > > Is it possible to exclude some selected files or directories by naming > them in the Makefile.fpc? No. It is one of the reasons why fpmake/fppkg will

[fpc-pascal] PToP problem on 'uses' keyword

2008-07-20 Thread leledumbo
Everytime I have a uses section in my source, PToP always thinks that the uses section never ends. For example: program tes; uses Math; procedure proc(s: String); begin WriteLn(s); end; begin proc('something'); end. Without the uses section, I got them formatted properly.

[fpc-pascal] Getting fast output

2008-07-20 Thread leledumbo
Is there any way so that Write(Ln) doesn't flush the buffer after each call (as if it's called to write to a file, I knew it from rtl's file handling source), but only when Flush is called? I found some maniac's code that does it at assembler level, but of course it's platform dependant (i386-linu

[fpc-pascal] No need for as and ld on i386-win32?

2008-07-20 Thread leledumbo
I've just read the buildfaq that Marco wrote and I found that under x86 (win32 and elf), FPC has internal assembler (I didn't know this before). Even under win32 it also has internal linker (I already know this one). Does it mean that as and ld is no longer needed for i386-win32? I see a path wher

[fpc-pascal] what doese shared-build do in fpcmake?

2008-07-20 Thread Marc Santhoff
Hi, maybe my docs are outdated, but I didn't find an explanation for this one (found in several files in the fpc packages tree): [shared] build=n What's it good for? TIA, Marc ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.

[fpc-pascal] excluding files or dirs from fpcmake packaging

2008-07-20 Thread Marc Santhoff
Hi, when using fpcmake to create distribution packages anything in the source dir is getting packed into the "zipsourceinstall"-package. Is it possible to exclude some selected files or directories by naming them in the Makefile.fpc? TIA, Marc ___ fp