[fpc-pascal] FPC reference manual.

2009-09-05 Thread Pascal
Hello. I'm new to FPC. I've used TP for many years up to TP7 but not Delphi. Then I came to Ada. FPC seems to bring many enhancements to TP. First I'm reading some documentation ;-) I'm looking for a way to program with Cocoa on Mac. When reading reference guide for Free Pasc

Re: [fpc-pascal] FPC reference manual.

2009-09-13 Thread Pascal
ODEFAULT CVAR RESSOURCESTRING DEPRECATED EXPERIMENTAL PLATFORM UNIMPLEMENTED => are they modifiers ? They missing in modifier lists. OTH, Pascal. http://blady.pagesperso-orange.fr From: Michael Van Canneyt Subject: Re: [fpc-pascal] FPC reference manual. On Sun, 6 Sep 2009, Pascal wrote: Hel

Re: [fpc-pascal] FPC reference manual.

2009-09-27 Thread Pascal
Hello Michael. I really don't want to be too much annoying but you could believe it ;-) I'm updating Pascal to Ada translator (http://sourceforge.net/ projects/p2ada/) to a more modern Pascal syntax as FPC is. As I'm coding the grammar based on FPC, I'm asking some quest

[fpc-pascal] Generic type declaration example versus manual.

2009-11-21 Thread Pascal
und in the example doesn't take care of the first identifier in type declaration. May I suggest the following: TStack = generic class(TObject) public procedure Clear; virtual; destructor Destroy; override; end; This syntax looks like more Pascal conformant, i.e. it do

Re: [fpc-pascal] Generic type declaration example versus manual.

2009-11-22 Thread Pascal
Hello Anthony. Thanks for your proposal. I'm a bit surprised of Delphi chosen syntax because "TList=class ..." breaks Pascal usual type declaration "Id=type;" and "=" may be confused with greater or equal operator. Have you some documentation available on

[fpc-pascal] Pascal grammar for FPC.

2009-11-27 Thread Pascal
Hello. In order to get translations from FPC to Ada language, I have updated P2Ada translator http://sourceforge.net/projects/p2ada. I add a new ObjP2Ada branch. The grammar is based on: reference guide for Free Pascal (FPC), version 2.2.4, March 2009 programmer's guide Turbo Pasca

[fpc-pascal] Internal error 200502052

2009-05-25 Thread Coco Pascal
re so I can make a small test project for a bugreport? _______ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Internal error 200502052

2009-05-26 Thread Coco Pascal
Coco Pascal wrote: I get an internal error 200502052 when building a library on fc10 with lazarus 0.9.26.2/fpc 2.2.2 and a recent nightly build with fpc 2.2.4. It is raised by the following procedure from aasmtai.pas: procedure tai_cpu_abstract.loadref(opidx:longint;const r:treference

[fpc-pascal] undefined reference to `fpc_geteipasebx'

2009-05-28 Thread Coco Pascal
tion Y_Odd(const AValue: Int64): LongInt; cdecl; external 'yfbudf'; libyfbudf.so is located in /usr/lib ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] undefined reference to `fpc_geteipasebx'

2009-05-28 Thread Coco Pascal
Jonas Maebe wrote: Don't use -Cg, it doesn't work yet for Linux/i386. I searched the Lazarus Compiler Options dialog but didn't find this parameter. What should I do? ___ fpc-pascal maillist - fpc-pascal@lists.free

Re: [fpc-pascal] undefined reference to `fpc_geteipasebx'

2009-05-29 Thread Coco Pascal
Marco van de Voort schreef: In our previous episode, Coco Pascal said: Jonas Maebe wrote: Don't use -Cg, it doesn't work yet for Linux/i386. I searched the Lazarus Compiler Options dialog but didn't find this parameter. What should I do? It enabled PIC

Re: [fpc-pascal] undefined reference to `fpc_geteipasebx'

2009-05-30 Thread Coco Pascal
ary project and build it routine by routine. No problems at all now. I suspect that the fact that I originally just copied project files from the win32 platform caused the problems described. ___ fpc-pascal maillist - fpc-pascal@lists.free

[fpc-pascal] How to call lib routines with cdecl calling convention with win32 app?

2009-05-30 Thread Coco Pascal
found' error. I assume cdecl is obligatory, but can I implement that? ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] How to call lib routines with cdecl calling convention with win32 app?

2009-05-31 Thread Coco Pascal
Marco van de Voort schreef: In our previous episode, Coco Pascal said: I have a library with udf routines using the cdecl calling convention, required by Firebird. This seems to work well on win32. How exactly? ? function Y_Odd(const AValue: Int64): LongInt; cdecl; export; begin

[fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-05-31 Thread Coco Pascal
lin32? (The same module build with fpc win32 works fine with Firebird win32.) ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] How to call lib routines with cdecl calling convention with win32 app?

2009-05-31 Thread Coco Pascal
Jonas Maebe schreef: On 31 May 2009, at 15:28, Coco Pascal wrote: Marco van de Voort schreef: In our previous episode, Coco Pascal said: I have a library with udf routines using the cdecl calling convention, required by Firebird. This seems to work well on win32. How exactly

Re: [fpc-pascal] How to call lib routines with cdecl calling convention with win32 app?

2009-05-31 Thread Coco Pascal
Jonas Maebe schreef: On 31 May 2009, at 20:05, Coco Pascal wrote: I tried function Y_Odd(const AValue: Int64): LongInt; cdecl; alias: '_Y_Odd'; export; and function Y_Odd(const AValue: Int64): LongInt; cdecl; alias: '__Y_Odd'; export; but still I get the message entrypo

Re: [fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-06-01 Thread Coco Pascal
Coco Pascal schreef: If I build a library with udf functions for Firebird tests with an fpc app calling those routines works fine. However with Firebird module and entrypoint are found but garbage is returned. function vv(const AValue: LongInt): LongInt; cdecl; export; begin Result := AValue

Re: [fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-06-01 Thread Coco Pascal
Jonas Maebe schreef: On 01 Jun 2009, at 11:40, Coco Pascal wrote: It looks as if the code isn't executed at all. Maybe Firebird requires PIC. That is extremely unlikely (I'd say "impossible", but that's dangerous). Whether or not the code in the library is

Re: [fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-06-01 Thread Coco Pascal
Jonas Maebe wrote: On 01 Jun 2009, at 12:30, Jonas Maebe wrote: On 01 Jun 2009, at 11:40, Coco Pascal wrote: It looks as if the code isn't executed at all. Maybe Firebird requires PIC. That is extremely unlikely (I'd say "impossible", but that's dangerous). Wheth

Re: [fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-06-01 Thread Coco Pascal
Jonas Maebe wrote: On 01 Jun 2009, at 14:39, Coco Pascal wrote: But if I add the following function it returns wrong results. This one does refer to other code. function Y_Odd(const AValue: LongInt): LongInt; cdecl; export; begin if Odd(AValue) then Result := -1 else Result := 0; end; It

Re: [fpc-pascal] Firebird +lin32 + fpc lib udf returns garbage.

2009-06-02 Thread Coco Pascal
Jonas Maebe schreef: On 01 Jun 2009, at 21:06, Coco Pascal wrote: So, what do think? A simple module contains two simple functions. On win32 it works fine. On lin32 one function works as expected, the other returns garbage (0 or null). Is the problem linux, firebird or fpc related? I

[fpc-pascal] Linux-64 distro recommendation

2006-09-03 Thread Coco Pascal
Hello, Any recommendation regarding free linux 64 bits desktop and server distros? Its completely new to me. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Linux-64 distro recommendation

2006-09-05 Thread Coco Pascal
Coco Pascal wrote: Hello, Any recommendation regarding free linux 64 bits desktop and server distros? Its completely new to me. Nobody? I haven't been able yet to install Ubuntu-64 or openSUSE-64 on my machine. Can I make "pure" 64 bits builds on a 3

Re: [fpc-pascal] Linux-64 distro recommendation

2006-09-05 Thread Coco Pascal
Felipe Monteiro de Carvalho wrote: On 9/5/06, Coco Pascal <[EMAIL PROTECTED]> wrote: Nobody? In that case you could test Mandriva 2006 for x86_64 Will do. Can I make "pure" 64 bits builds on a 32 bits platform? You want to cross compile from 32 bits to 64 bits If "c

Re: [fpc-pascal] msedb and fcl-db benchmarks

2007-07-17 Thread Coco Pascal
arger than 1 million records, obviously local. Consequently one could ask if one type of dataset could satisfy requirements regarding performance and use of resources in both cases. _______ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.f

Re: [fpc-pascal] msedb and fcl-db benchmarks

2007-07-17 Thread Coco Pascal
Daniël Mantione wrote: Op Tue, 17 Jul 2007, schreef Coco Pascal: Joost van der Sluis wrote: Discussion: What tests could I do more? Is there something I overlooked? To me it seems that benchmark tests on 10 records are missing relevance more and more. I'm interest

Re: [fpc-pascal] msedb and fcl-db benchmarks

2007-07-17 Thread Coco Pascal
Joost van der Sluis wrote: On Tue, 2007-07-17 at 19:58 +0200, Coco Pascal wrote: Joost van der Sluis wrote: Discussion: What tests could I do more? Is there something I overlooked? To me it seems that benchmark tests on 10 records are missing relevance more and more

Re: [fpc-pascal] Installing FPC on CentOS 5 x64

2007-10-28 Thread Coco Pascal
hp?id=9899 ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] ann: new pascal magazine

2008-04-07 Thread Coco Pascal
Bee schreef: Hi all, There is a new pascal magazine at http://www.blaisepascal.eu/ It might a good place to promote FreePascal and its technologies, e.g. - fpc features and supported platforms - lazarus IDE - lazarus components - mobile programming (wince, symbian) - macOS support - web

hello

2004-01-27 Thread fpc-pascal
The message contains Unicode characters and has been sent as a binary attachment. <>

RE: [fpc-pascal] StackTop and StackBottom are bogus in a Win32/64 Dll

2012-07-09 Thread Pierre Free Pascal
ckTop and StackBottom are threadvars, which is a free pascal specific construct consisting in: an assembler label with two fields: First a pointer size integer that holds the offset within the Thread Variable Block of the thread specific value of the variable, followed by a second block of size o

RE: [fpc-pascal] Free Pascal 2.6.2 rc1

2012-11-27 Thread Pierre Free Pascal
-Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Bart > Envoyé : lundi 26 novembre 2012 18:10 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] Free Pascal 2.6.2 rc1 > >

RE: [fpc-pascal] Free Pascal 2.6.2 rc1

2012-11-28 Thread Pierre Free Pascal
available on Windows 95. Pierre De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal-boun...@lists.freepascal.org] De la part de Vincent Snijders Envoyé : mercredi 28 novembre 2012 07:38 À : FPC-Pascal users discussions Objet : Re: [fpc-pascal] Free Pascal 2.6.2 rc1 2012/11/28

RE: [fpc-pascal] Re: Text IDE, the displayed cursor position

2013-03-07 Thread Pierre Free Pascal
The bug is indeed 64-bit specific... Hopefully fixed in rev 23704, http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&revision=23704 Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.fre

RE: [fpc-pascal] FreeBSD failure compiling fpdoc 2.7.1

2013-03-15 Thread Pierre Free Pascal
ib/fpc/2.7.1 but also BASE_271_DIR/lib/fpc/2.6.0 which contains the newly installed linraries... I don't exactly know when, and when not, this problem shows up. A good solution to avoid it is to put your trunk compiler binary in the path before the release compiler. Pierre ____

RE: [fpc-pascal] 64 bit cross binutils on a 32 bit OS

2013-04-11 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de patspiper > Envoyé : jeudi 11 avril 2013 13:01 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] 64 bit cross binutils

RE: [fpc-pascal] 64 bit cross binutils on a 32 bit OS

2013-04-11 Thread Pierre Free Pascal
0130304.patch), > but it seems it is still not included in binutils 2.23.2 Anyhow, there is no cygwin target for Free Pascal, neither win32 nor win64. It wouldn't be impossible to create... but someone would have to volunteer! Pierre Muller _____

RE: [fpc-pascal] 64 bit cross binutils on a 32 bit OS

2013-04-11 Thread Pierre Free Pascal
ror 1 So the solution to your problem really is to run a 'distclean' make target before the 'crossinstall' target. Pierre Muller ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

RE: [fpc-pascal] can someone please email me a zipped hello world binary program MIPS big endian for testing on my MIPS hardware?

2013-06-12 Thread Pierre Free Pascal
Did you try: ftp://ftp.freepascal.org/pub/fpc/snapshot/trunk/mips-linux/ I just produced an up-to-date snapshot. Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Dennis

RE: [fpc-pascal] si_c21.inc(57, 1) Error: Unrecognized opcode: At revision 24956.

2013-06-24 Thread Pierre Free Pascal
ation so we can help you. Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Eric Kom > Envoyé : lundi 24 juin 2013 07:40 > À : fpc-pascal@lists.freepascal.org > Objet 

[fpc-pascal] RE: FPIDE 1.0.6

2013-07-23 Thread Pierre Free Pascal
Hi Matúš, I never read anything about a mouse related problem concerning the Text mode IDE with Free Pascal 2.6.2. But maybe someone on the mailing list knows something about this hypothetical bug... If anyone knows, please try to describe this problem as precisely as possible. Thanks in

[fpc-pascal] RE: FPIDE 1.0.6

2013-07-23 Thread Pierre Free Pascal
It will be difficult to get feedback on outdate releases... Why can't you use a more recent compiler? Pierre Muller > -Message d'origine- > De : Matúš Kudláč [mailto:matus.kud...@gmail.com] > Envoyé : mardi 23 juillet 2013 09:26 > À : Pierre Free Pascal > Objet : R

RE: [fpc-pascal] FPC 2.6.2 for DOS/Go32V2 FP.EXE cannot run a second time

2013-09-19 Thread Pierre Free Pascal
mighr be corrupted. If remove fp.dsk alone does not remove the crash, try removing the three files. Could you please report to the list if any of the above helped? Thanks in advance, Pierre Muller De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal-boun

RE: [fpc-pascal] FPC 2.6.2 for DOS/Go32V2 FP.PAS cannot compile with GDB support

2013-11-08 Thread Pierre Free Pascal
first compiler the snapshot 2.6.3 compiler, and use this freshly generated snapshot compiler to recompile rtl packages and finally compile the IDE with libgdb. Could you test if this works for you also? Pierre Muller. ___ fpc-pascal maillist - fpc

RE: [fpc-pascal] Free Pascal 2.6.4-rc1 released!

2013-12-26 Thread Pierre Free Pascal
None 42136156 16 nov. 16:14 fpc-2.6.4rc1.i386-win32.exe Please test again. Sorry for the mistake. Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Gerhard Scholz >

RE: [fpc-pascal] Free Pascal 2.6.4-rc1 - IDE crashes

2013-12-31 Thread Pierre Free Pascal
Pascal run time library. Copyright (c) 1993-98 by the Free Pascal Development Team Hello World Example See the file COPYING.FPC, included in this distribution, for details about the copyright. This program is distributed in the hope that it will be useful, but WITHOUT ANY

[fpc-pascal] How to eliminate specific hint (was: how to initialize a SearchRec var?)

2014-01-03 Thread Pierre Free Pascal
Hint: End of reading config file e:\pas\fpc-2.7.1\bin\i386-win32\fpc.cfg Magic, isn't it? Pierre Muller ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Is it just me or... trunk cross compile failure on arm-linux

2014-01-08 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Reinier Olislagers > Envoyé : mercredi 8 janvier 2014 13:58 > À : FPC Mailing list > Objet : [fpc-pascal] Is it just me or... trun

Re: [fpc-pascal] Is it just me or... trunk cross compile failure on arm-linux

2014-01-08 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Reinier Olislagers > Envoyé : mercredi 8 janvier 2014 17:05 > À : FPC Mailing list > Objet : Re: [fpc-pascal] Is it just me or

Re: [fpc-pascal] ARM Linux crosscompiler: compiles but... executable gives segmentation fault

2014-01-10 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Michael Ring > Envoyé : vendredi 10 janvier 2014 13:40 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] ARM Linux

[fpc-pascal] Changes in 2.4.0

2010-03-30 Thread lists . fpc-pascal
) iEYEARECAAYFAkuyCAUACgkQLfImQU9wLUoDMQCeJE/o7Q3ejpkYdIhAgqysjRak WWoAnjpJ+kTy9a1brV7YFAlOnfqx7Tej =K8vp -END PGP SIGNATURE- ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Changes in 2.4.0

2010-03-30 Thread lists . fpc-pascal
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Jonas, Today, Mar 30, Jonas Maebe wrote to FPC-Pascal users discussions about Re:...: Thanks to you and Michael for the speedy reply. JM > > One of the first things I stumbled upon was the absence of JM > > ResourceStri

Re: [fpc-pascal] Changes in 2.4.0

2010-04-23 Thread lists . fpc-pascal
beginning: { Compiler options } {$mode ObjFPC} {$M 8192,0,655360} {$I-,H+} {$IFDEF Testing} {$D+,L+,R+} {$ELSE} {$D-,L-,R-} {$ENDIF} And in my compile batch I have: fpc -vw -Fi~/amc/src -FE../bin -Fu~/pascal/units -FU./ amc When I try to copileis tells me: Copyright (c) 199

Re: [fpc-pascal] Changes in 2.4.0

2010-04-26 Thread lists . fpc-pascal
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Jonas, Friday, Apr 23, Jonas Maebe wrote to FPC-Pascal users discussions about Re:...: JM > > I'm still stuck. Who can tell me what's wrong? JM > Without a self-contained compilable example that demonstrates the problem: J

RE: [fpc-pascal] Building FPC trunk on XP win64

2010-11-26 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Birger Jansen > Envoyé : vendredi 26 novembre 2010 14:13 > À : fpc-pascal@lists.freepascal.org > Objet : RE: [fpc-pascal] Buildin

RE: Re[4]: [fpc-pascal] Help building fpc svn Win64

2011-01-11 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de José Mejuto > Envoyé : mercredi 5 janvier 2011 17:42 > À : FPC-Pascal users discussions > Objet : Re[4]: [fpc-pascal] Help

RE: [fpc-pascal] status of sparc solaris support

2011-06-28 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Jonas Maebe > Envoyé : mardi 28 juin 2011 13:14 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] status of sparc sol

RE: [fpc-pascal] Compiling sources obtained via SVN

2011-10-19 Thread Pierre Free Pascal
ere are other problems that might appear as the library can be generated with different configure options that need different libraries (like using --with-python option ) The best way to generate a Free Pascal IDE is to rebuild gdb from source (best would be to use the latest port to your system

RE: [fpc-pascal] FP IDE: Error: Illegal parameter: -Cp386

2012-01-04 Thread Pierre Free Pascal
Did you try to "manually" (meaning with some other text editor, or sed script) remove the offending line -Cp386 from fp.cfg? The problem might come from a fp.cfg that was created by an earlier version of Free Pascal for which -Cp386 was allowed. To complicate things further, once

RE: [fpc-pascal] Win64 and currency

2012-03-30 Thread Pierre Free Pascal
Confirmed, if you usee -Aas and -al you will see that TEST is just .quad -10 which is wrong of course... Using -10.0 fixes the bug for now if you really need this correct fast. It would be nice if you could submit a bug report. Pierre Muller > -Message d'origine- > De :

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-24 Thread Pierre Free Pascal
is the case, I will modify idedos.zip and the big zip files in dist/2.6.4/i386-go32v2/ directory. Thanks in advance and sorry for the error. Pierre Muller De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal-boun...@lists.freepascal.org] De la part de Lubomír Cabla

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-24 Thread Pierre Free Pascal
I was able to reproduce your problem, but not to fix it yet … I hope I will find a fast fix. Sorry for the trouble, Pierre Muller De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal-boun...@lists.freepascal.org] De la part de Lubomír Cabla Envoyé : lundi 24 mars 2014 15

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-25 Thread Pierre Free Pascal
the fact that most of the time djgpp_last_ctor contained a NIL pointer, but this was just a coincidence. Hopefully, with that fix include, I will be able to generate a functional IDE… I will send a new message after I update the fpgdb.zip file. Pierre Muller De : f

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-25 Thread Pierre Free Pascal
A new fpgdb.zip is available in dist/2.6.4/i386-go32v2/separate/ directory. I added a readme.dos containing the changes made to 2.6.4 sources in order to get a “hopefully” fully functional IDE with debugger included. Please test and report, Pierre Muller De : fpc-pascal-boun

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-28 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Lubomír Cabla > Envoyé : mercredi 26 mars 2014 21:05 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] FPC 2.6.4 for G

Re: [fpc-pascal] FPC 2.6.4 for GO32

2014-03-29 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Lubomír Cabla > Envoyé : vendredi 28 mars 2014 23:21 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] FPC 2.6.4 fo

Re: [fpc-pascal] How to remove verbose compiler output

2014-04-05 Thread Pierre Free Pascal
in asking about {$hints on} inside source, because, in such case the command line -v0 has no effect. Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Graeme Geldenhuys >

Re: [fpc-pascal] Inconsistent results currency - extended ?

2014-04-29 Thread Pierre Free Pascal
ompilation command line that does not require Lazarus use? Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de LacaK > Envoyé : mardi 29 avril 2014 10:23 > À : FPC-Pa

Re: [fpc-pascal] Currency constant wrongly stored in generated EXE?

2014-05-12 Thread Pierre Free Pascal
beyond four digits:[9] 4195835/3145727 = 1.333739068902037589 Maybe that is your problem? Pierre ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] go32v2

2014-07-15 Thread Pierre Free Pascal
Hello, could you please try out: ftp://gd.tuwien.ac.at/languages/pascal/fpc/dist/2.6.4/i386-go32v2/separate/f pgdb.zip and report if this works for you. Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pas

Re: [fpc-pascal] Which gdb version to use?

2014-12-18 Thread Pierre Free Pascal
might disrupt gdbint.pp code. But maybe I understood wrong and you are talking about the Lazarus IDE... Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Martin Schreiber &g

Re: [fpc-pascal] Which gdb version to use?

2014-12-18 Thread Pierre Free Pascal
release? Pierre > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Martin Schreiber > Envoyé : jeudi 18 décembre 2014 14:14 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pa

Re: [fpc-pascal] Error Message recording not yet supported

2015-01-14 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Jonas Maebe > Envoyé : mercredi 14 janvier 2015 15:20 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] Error Me

Re: [fpc-pascal] TProcess does not work in Windows XP

2015-03-25 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Michael Van Canneyt > Envoyé : mercredi 25 mars 2015 09:54 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] TP

Re: [fpc-pascal] TProcess does not work in Windows XP

2015-03-25 Thread Pierre Free Pascal
essage d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Antonio Sanguigni > Envoyé : mercredi 25 mars 2015 15:43 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] TProcess does not work in Win

Re: [fpc-pascal] valgrind: "invalid read"

2015-06-05 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Jonas Maebe > Envoyé : jeudi 4 juin 2015 19:51 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] valgrind: "

Re: [fpc-pascal] valgrind: "invalid read"

2015-06-05 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Jonas Maebe > Envoyé : vendredi 5 juin 2015 10:52 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] valgrind: "

Re: [fpc-pascal] will be work macro with name of the unit?

2015-07-15 Thread Pierre Free Pascal
ainst C preprocessor macros: in C, you would be able to use $define XXX_parser XXX_ ## parser so that unit XXX_parser; would work as you want, but I don't think that we ever implemented an equivalent inside the Free Pascal compiler. The other aspect is that, according to Michael's a

Re: [fpc-pascal] FreeBSD and fpc messages.

2015-08-16 Thread Pierre Free Pascal
at the difference in the found configuration file and possibly after for some -Fr option (loading custom error message). Hope this will help, Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepas

Re: [fpc-pascal] I thought fpc 3.0 would be compilable from fpc 3.0?

2015-12-06 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Bo Berglund > Envoyé : dimanche 6 décembre 2015 18:12 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pascal] I thought fpc

Re: [fpc-pascal] No official FPC 3.0 installer for Solaris

2016-01-04 Thread Pierre Free Pascal
for solaris. I did NOT have the time to test it. Please report if you have troubles, Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Graeme Geldenhuys > Envoyé : lun

Re: [fpc-pascal] No official FPC 3.0 installer for Solaris

2016-01-05 Thread Pierre Free Pascal
;origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Graeme Geldenhuys > Envoyé : lundi 4 janvier 2016 17:36 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pascal] No official FPC 3.0 installer for Sol

Re: [fpc-pascal] intel vs att asm (fstp instruction) (osx/clang features)

2016-05-04 Thread Pierre Free Pascal
I think the correct solution for you is to use explicit size information: FSTP SINGLE PTR [EDX] FSTP SINGLE PTR [EAX] but FSTP [s] and FSTP [c] would be even better, I don’t know if this syntax is Delphi compatible or not. It seems that indeed Free Pascal does not set

Re: [fpc-pascal] Textmode IDE splitscreen?

2016-07-25 Thread Pierre Free Pascal
nt of the go32v2 IDE, Pierre Muller > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de James Richters > Envoyé : dimanche 24 juillet 2016 23:57 > À : 'FPC-Pascal users discussions&#x

Re: [fpc-pascal] windows graph unit questions

2016-08-17 Thread Pierre Free Pascal
Hi, the beauty about free open source is that you can search the sources: > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de James Richters > Envoyé : mercredi 17 août 2016 14:42 > À

Re: [fpc-pascal] Linking to Linux on a FreeBSD system with Linux emulated ?

2016-09-01 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de fredvs > Envoyé : jeudi 1 septembre 2016 22:55 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pascal] Linking to Linux o

Re: [fpc-pascal] with no if assigned() there are bugs

2016-09-21 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Martin > Envoyé : mercredi 21 septembre 2016 12:38 > À : FPC-Pascal users discussions > Objet : Re: [fpc-pascal] with no if as

Re: [fpc-pascal] with no if assigned() there are bugs

2016-09-21 Thread Pierre Free Pascal
. As the fix is not cpu specific, I enabled the -gc option for all linux systems in trunk, but this is untested. So if you are using linux OS, -gc option is probably only usable starting with today's trunk commits. Pierre > -Message d'origine- > De :

Re: [fpc-pascal] Error: Internal error 2014052302

2016-11-20 Thread Pierre Free Pascal
Hi, > -Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Tony Whyman > Envoyé : dimanche 20 novembre 2016 15:13 > À : FPC-Pascal users discussions > Objet : [fpc-pascal] Error: In

Re: [fpc-pascal] Repeat result in random

2017-01-08 Thread Pierre Free Pascal
-Message d'origine- > De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal- > boun...@lists.freepascal.org] De la part de Tony > Envoyé : samedi 26 novembre 2016 16:26 > À : FPC-Pascal users discussions > Objet : [fpc-pascal] Repeat result in random > > Here is

Re: [fpc-pascal] SPARC / Linux

2017-03-11 Thread Pierre Free Pascal
;origine- > De : fpc-pascal [mailto:fpc-pascal-boun...@lists.freepascal.org] De la > part de tobiasgie...@gmail.com > Envoyé : samedi 11 mars 2017 18:25 > À : fpc-pascal@lists.freepascal.org > Objet : [fpc-pascal] SPARC / Linux > > Hello, > > I noticed there is no binar

Re: [fpc-pascal] SPARC / Linux

2017-03-12 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal [mailto:fpc-pascal-boun...@lists.freepascal.org] De la > part de Mark Morgan Lloyd > Envoyé : dimanche 12 mars 2017 11:14 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pascal] SPARC / Linux > > ANYBODY:

Re: [fpc-pascal] SPARC / Linux

2017-03-12 Thread Pierre Free Pascal
variable CHECKLIBGDB=no. - it will also ask for a documentation file, which you download from the Free Pascal ftp server as well. Launch once more install/makepack... This time, it should do everything and generated at /dir/to/fpcbuild-3.0.2 a new fpc-3.0.2.sparc-linux.tar which will contain a

Re: [fpc-pascal] SPARC / Linux

2017-03-13 Thread Pierre Free Pascal
> -Message d'origine- > De : fpc-pascal [mailto:fpc-pascal-boun...@lists.freepascal.org] De la > part de Mark Morgan Lloyd > Envoyé : lundi 13 mars 2017 09:11 > À : fpc-pascal@lists.freepascal.org > Objet : Re: [fpc-pascal] SPARC / Linux > > On 13/03/17 06

[fpc-pascal] Linker switch

2020-02-18 Thread - via fpc-pascal
, Koenraad. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] parameter list declaration

2017-04-01 Thread leledumbo via fpc-pascal
OV, while official docs are written in more in-depth technical POV. -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/parameter-list-declaration-tp5728069p5728088.html Sent from the Free Pascal - General mailing list archive at Nabble.com.

Re: [fpc-pascal] Partial text search in a dictionary

2017-05-16 Thread leledumbo via fpc-pascal
lex solution like Regex search is not needed. Google for prefix tree (or radix tree or trie) implementation. I believe I've seen one in either Blaise Pascal Magazine or Pascal Gamer Magazine, the topic is about building autocomplete combobox if I'm not mistaken. -- View this message in c

Re: [fpc-pascal] Browser and exe

2017-05-23 Thread leledumbo via fpc-pascal
iew this message in context: http://free-pascal-general.1045716.n5.nabble.com/Browser-and-exe-tp5728798p5728804.html Sent from the Free Pascal - General mailing list archive at Nabble.com. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.

Re: [fpc-pascal] GLM library alternative?

2017-05-27 Thread leledumbo via fpc-pascal
> Has anyone converted these to Pascal before or having some similar I could look at? I don't usually do the matrix calculation myself, I delegate that by calling OpenGL functions in proper order. However, just a few days ago I found this: https://paginas.fe.up.pt/~paco/pmwiki/ind

  1   2   3   4   5   6   7   8   9   10   >