[fpc-pascal] Re: Debugger support for FP (issues with libgdb.a)

2009-01-10 Thread Andrea
Jonas Maebe wrote: On 04 Jan 2009, at 16:51, Andrea wrote: My gdb is version 6.8, on your link I can only find 6.2.1 Will that be a problem when it runs? No: libgdb.a basically contains a complete gdb implementation in that library, and the IDE will use that. It's not an interface

Re: [fpc-pascal] Debugger support for FP (issues with libgdb.a)

2009-01-04 Thread Andrea
Jonas Maebe wrote: On 04 Jan 2009, at 16:51, Andrea wrote: My gdb is version 6.8, on your link I can only find 6.2.1 Will that be a problem when it runs? No: libgdb.a basically contains a complete gdb implementation in that library, and the IDE will use that. It's not an interface

Re: [fpc-pascal] Problems with FP-IDE with xterm

2008-12-22 Thread Andrea
Marco van de Voort wrote: In our previous episode, Andrea said: I can see that all non standard ASCII character are missing (e.g. stressed vowel). Other times the windows appear diagonal (like the length of the line was wrong). Sounds like ascii output is interpreted as something else

Re: [fpc-pascal] Debugger support for FP (issues with libgdb.a)

2008-12-22 Thread Andrea
Joost van der Sluis wrote: Op zondag 21-12-2008 om 17:29 uur [tijdzone +], schreef Andrea: You tried to re-build the rpm, there's no documentation about that. Maybe it's easier to build then ide manually. Extract the source, copy the libgdb-files, go to the ide directory and do a 'make

[fpc-pascal] Problems with FP-IDE with xterm

2008-12-21 Thread Andrea
much. Andrea ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Debugger support for FP (issues with libgdb.a)

2008-12-21 Thread Andrea
more similar) make[3]: Entering directory `/home/andrea/rpmbuild/BUILD/fpcbuild-2.2.2/fpcsrc/ide' /home/andrea/rpmbuild/BUILD/fpcbuild-2.2.2/fpcsrc/compiler/ppc386 -di386 -Fl/home/andrea/rpmbuild/BUILD/fpcbuild-2.2.2/fpcsrc/libgdb/linux -Ur -Xs -O2 -n -Sg -Fu/home/andrea/rpmbuild/BUILD/fpcbuild

Re: [fpc-pascal] Re: Why this evaluates on if wrong ? (GMP)

2007-10-30 Thread Andrea Mauri
/mailman/listinfo/fpc-pascal -- Andrea Mauri PhD student - Chemical Sciences Milano Chemometrics and QSAR Research Group Department of Environmental Sciences University of Milano-Bicocca P.zza della Scienza, 1 20126 Milano - Italy Tel: ++39 02 64482801 mailto:[EMAIL PROTECTED] http

Re: [fpc-pascal] splitting string into array

2007-07-10 Thread Andrea Mauri
; Result[i]:= strfield; Inc(i); until strline= ''; if Result[High(Result)] = '' then SetLength(Result, Length(Result) -1); end; andrea Wolfram Kläger ha scritto: Here is a Delphi implementation of the common PHP function 'explode'. http://www.michael-puff.de/Developer/Delphi/Code

Re: [fpc-pascal] splitting string into array

2007-07-10 Thread Andrea Mauri
occurs is: function Occurs(const str, separator: string): integer; var i, nSep: integer; begin nSep:= 0; for i:= 1 to Length(str) do if str[i] = separator then Inc(nSep); Result:= nSep; end; Andrea Mauri ha scritto: I used this, check it. // Returns an array with the parts of str

[fpc-pascal]nCrt Window resize problem

2003-02-18 Thread Andrea Weikert
of that terminal window. Is that possible at all? The only possibility I could think of so far is to handle the SIGWINCH signal and 'redraw' the window, but that would require a major rewrite, so I want to consider other possibilities first. I'd appreciate any help as to how this can be done. -- Andrea