Re: [Lazarus] gdb problems on ubtuntu 19.10

2019-10-31 Thread Anthony Walter via lazarus
Stripping debug symbols from my test program has no effect. The gdb program still takes 20-30 seconds to open my text programs written using Lazarus. -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] gdb problems on ubtuntu 19.10

2019-10-31 Thread Martin Frb via lazarus
On 01/11/2019 02:27, Anthony Walter via lazarus wrote: I know this problem is not entirely Lazarus related, but I'm hoping someone here might be able to provide some insight. On a fresh install of Ubuntu 19.10 when running projects from Lazarus with gdb debugging, any and all projects take

[Lazarus] gdb problems on ubtuntu 19.10

2019-10-31 Thread Anthony Walter via lazarus
I know this problem is not entirely Lazarus related, but I'm hoping someone here might be able to provide some insight. On a fresh install of Ubuntu 19.10 when running projects from Lazarus with gdb debugging, any and all projects take anywhere from 20 to 30 seconds to become interactive after a

Re: [Lazarus] OSX 64 bit Cocoa + Catalina Installer

2019-10-31 Thread Anthony Tekatch via lazarus
On Tue, 15 Oct 2019 02:09:29 +0200, Martin Frb wrote: > You are aware that the IDE now supports LLDB too? > https://forum.lazarus.freepascal.org/index.php/topic,42869.0.html Thank you. LLDB did work and helped me find some problems in my program on to get it to work on Mac OSX Catalina. --

Re: [Lazarus] Lazarus program runs fine in a Terminal but not in a PuTTY session, why?

2019-10-31 Thread Bo Berglund via lazarus
On Thu, 31 Oct 2019 11:06:17 +0100, Bo Berglund via lazarus wrote: >I am working on a program intended to be run by cron in unattended >mode on a Raspberry Pi without GUI installed. > >I started it in Windows but have now moved the sources over to >Raspbian for building on that platform and it

[Lazarus] Lazarus program runs fine in a Terminal but not in a PuTTY session, why?

2019-10-31 Thread Bo Berglund via lazarus
I am working on a program intended to be run by cron in unattended mode on a Raspberry Pi without GUI installed. I started it in Windows but have now moved the sources over to Raspbian for building on that platform and it does not work as expected... If I open a terminal window inside the

Re: [Lazarus] Problem installing package from OLPM on Raspbian

2019-10-31 Thread Bo Berglund via lazarus
On Wed, 30 Oct 2019 23:17:08 +0100, Bo Berglund via lazarus wrote: >What is the cause of this problem and what can I do to solve it? > >Kill lazarus via terminal or what? So this is what I did to get the system running: - killed lazarus so it was not running in hanged state - In a terminal I

Re: [Lazarus] Qt5 OpenDialog/SaveDialog file filter ok?

2019-10-31 Thread AlexeyT via lazarus
Sorry, that Filter works ok. Another question. In qt5/qtwsdialogs.pp we have   if (AFileDialog is TSaveDialog) and (trim(TmpFilter)='()') then     Result := ''   else     Result := GetUtf8String(TmpFilter); so that empty dlg.Filter will give empty result Qt filter. Only for SaveDialog! Why