Re: [fpc-pascal] which GUI (noob)

2015-12-01 Thread Saša Janiška
On Uto, 2015-08-04 at 16:35 +, Mark Morgan Lloyd wrote: I must admit that I spent some time exploring some other possible options in regard to the choice of programming language to be used for my desktop GUI project, just to come to the conclusion, even stronger than before, that FPC is the be

Re: [fpc-pascal] Feature announcement: Generic functions, procedures and methods

2015-12-01 Thread Sven Barth
Am 02.12.2015 07:44 schrieb "leledumbo" : > > Sven, I try the generic method inside one of my libraries and it generates > internal error 200204175, but I can't reproduce it with smaller programs. > How do you think I can help you to see it? It's currently a private project > in bitbucket (just bec

Re: [fpc-pascal] Feature announcement: Generic functions, procedures and methods

2015-12-01 Thread leledumbo
Sven, I try the generic method inside one of my libraries and it generates internal error 200204175, but I can't reproduce it with smaller programs. How do you think I can help you to see it? It's currently a private project in bitbucket (just because I don't want people to use it before it's API s

Re: [fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Anthony Walter
Okay good to know. I'll probably delete my entire fpc tree and rebuild using your notes. Thanks again. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Anthony Walter
Jonas, thanks for the reply. I got fpc 3.0 to compiler ad verified it works (by writing a hello world test program) per the solution in my last reply. I'll keep your response in mind, and others should as well, when I attempt to build Lazarus and compile a few more sophisticated tests.

Re: [fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Jonas Maebe
On 01/12/15 22:08, Anthony Walter wrote: Okay, this issue was related to: http://lists.freepascal.org/fpc-devel/2014-October/034592.html The solution was: make all OPT="-dNO_THREADING -Fl/usr/lib/arm-linux-gnueabihf -Fl/usr/lib/gcc/arm-linux-gnueabihf/4.6" 1) you don't need -dNO_THREADING 2)

Re: [fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Anthony Walter
Okay, this issue was related to: http://lists.freepascal.org/fpc-devel/2014-October/034592.html The solution was: make all OPT="-dNO_THREADING -Fl/usr/lib/arm-linux-gnueabihf -Fl/usr/lib/gcc/arm-linux-gnueabihf/4.6" ___ fpc-pascal maillist - fpc-pasc

Re: [fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Jonas Maebe
On 01/12/15 21:35, Anthony Walter wrote: I am attempting to configure Free Pascal 3.0 and Lazarus packages for Raspberry Pi and am running into a failure when making fpc. Here are the steps leading to the failure: I am starting with a working copy of fpc 2.6.4 linux arm on my Raspberry Pi. Th

Re: [fpc-pascal] Cryptography with Blowfish

2015-12-01 Thread luciano de souza
Problem solved. A friend advert me to the fact I can't use the same TMemoryStream for input and output. This is the correct code: program test; {$mode objfpc}{$H+} uses blowfish, classes; var VInput, VOutput: TMemoryStream; VCypher: TBlowfishEncryptStream; BEGIN VInput := nil; VOutput := TMemo

[fpc-pascal] FPC fixes 3 0 fails to build on linux arm

2015-12-01 Thread Anthony Walter
I am attempting to configure Free Pascal 3.0 and Lazarus packages for Raspberry Pi and am running into a failure when making fpc. Here are the steps leading to the failure: I am starting with a working copy of fpc 2.6.4 linux arm on my Raspberry Pi. I check out fpc branch fixes_3_0 from the free

[fpc-pascal] Cryptography with Blowfish

2015-12-01 Thread luciano de souza
Hello all, What's wrong with this code? I try to cryptograph a file. The compiler doesn't raise errors, but after running the program, no results happen. program test; {$mode objfpc}{$H+} uses blowfish, classes; var VMemory: TMemoryStream; VCypher: TBlowfishEncryptStream; BEGIN VMemory := TMem

Re: [fpc-pascal] Beautifier for freepascal

2015-12-01 Thread Peter
In addition to ptop and JCL already mentioned, there is the closed source DelForEx.zip intended for use with Delphi. There are standaline versions of it that run under wine on 'nix. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists

Re: [fpc-pascal] Beautifier for freepascal

2015-12-01 Thread Graeme Geldenhuys
On 2015-11-30 14:21, G.W. Herbold wrote: > Is there any plan to create such a very helpful tool??? As Jonas mentioned, there is "ptop" included with FPC. I've had some good usage of it in the past, but I don't know how much development it still receives (I should check the commit history). Also,