[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

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

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

2009-01-04 Thread Andrea
Joost van der Sluis wrote: > Op maandag 22-12-2008 om 23:17 uur [tijdzone +], schreef Andrea: >> Joost van der Sluis wrote: >>> Op zondag 21-12-2008 om 17:29 uur [tijdzone +0000], schreef Andrea: >>> >> Apparently it cannot work due to some incompatibility with

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 t

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: > >> I've tried to use the debugger in FP 2.2.2 and I got this error > >> "No debugger support available" > > I see below that you used the Fedora/RHEL f

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

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

2008-12-21 Thread Andrea
linker error (+ many 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/andre

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

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

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

2007-10-30 Thread Andrea Mauri
sts.freepascal.org/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 mai

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 &quo

Re: [fpc-pascal] splitting string into array

2007-07-10 Thread Andrea Mauri
= strline; strline:= ''; end; 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 &#

[fpc-pascal]nCrt Window resize problem

2003-02-18 Thread Andrea Weikert
resize 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 ho