Re: [Lazarus] Lazarus program files very big, why?

2015-10-04 Thread Mark Morgan Lloyd
Bo Berglund wrote: I installed Lazarus on my Pi2B (see other therad) and am now using fpc 3.1.1 and Lazarus 1.5. I also installed tightvnc for GUI access via VNC from my Win7 PC. My first test program on the Pi2B is a GUI application with 2 edit boxes and 2 buttons to test MD5 calculations. One

[Lazarus] JCF bug

2015-10-04 Thread Aradeonas
Hi, Just saw this problem that if you miss character it will cause Lazarus crash : > unit Unit1; > > {$mode objfpc}{$H+} > > interface > > uses  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs; > > type  TForm1 = class(TForm)  private    { private declarations } > public    {

Re: [Lazarus] JCF bug

2015-10-04 Thread Ondrej Pokorny
On 04.10.2015 16:32, Aradeonas wrote: Hi, Just saw this problem that if you miss character it will cause Lazarus crash : Actually, yes. I get an exception. But if you hit OK, Lazarus doesn't crash. Ondrej -- ___ Lazarus mailing list

Re: [Lazarus] JCF bug

2015-10-04 Thread Aradeonas
Sometimes it will crash,not all time. Regards, Ara -- http://www.fastmail.com - Email service worth paying for. Try it for free -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] JCF bug

2015-10-04 Thread Ondrej Pokorny
On 04.10.2015 17:44, Aradeonas wrote: Sometimes it will crash,not all time. Yes, it is a bug. Furthermore it causes a lot of memory leaks. Memory is leaked also if there are other (handled) syntax errors in the source. Ondrej -- ___ Lazarus mailing

Re: [Lazarus] JCF bug

2015-10-04 Thread Ondrej Pokorny
On 04.10.2015 16:32, Aradeonas wrote: Hi, Just saw this problem that if you miss character it will cause Lazarus crash : Not for me! Ondrej -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Lazarus program files very big, why?

2015-10-04 Thread leledumbo
> 1) Why is Lazarus creating such an enormously big executable file? Always read FAQ before asking: http://wiki.lazarus.freepascal.org/Lazarus_Faq#Why_are_the_generated_binaries_so_big.3F > 2) Why is it placing the project files in /root/tmp? Why not in /home/pi/something_or_other? The

Re: [Lazarus] Lazarus program files very big, why?

2015-10-04 Thread Mattias Gaertner
On Sun, 04 Oct 2015 00:06:00 +0200 Bo Berglund wrote: >[...] > 2) Why is it placing the project files in /root/tmp? > Why not in /home/pi/something_or_other? The default is ~/tmp. If you start Lazarus as root and root's home is /root then this is /root/tmp. Mattias --