Re: [Lazarus] Problems installing Lazarus on Linux Mint

2024-07-19 Thread Christo Crause via lazarus
On Sat, Jul 20, 2024 at 1:57 AM Giuliano Colla via lazarus < lazarus@lists.lazarus-ide.org> wrote: > 1) if the distro provides a Lazarus package, you may try to take advantage > of it. That means in a Debian distro using apt-get or in a Red-Hat style > distro using yum or dnf. Usually either it do

Re: [Lazarus] Main shows lots of changes in language files after rebuilding

2024-04-09 Thread Christo Crause via lazarus
On Tue, Apr 9, 2024 at 1:42 PM Maxim Ganetsky via lazarus < lazarus@lists.lazarus-ide.org> wrote: > 09.04.2024 08:30, Christo Crause via lazarus пишет: > > I updated the Lazarus main version yesterday. After rebuilding the IDE, > > git shows that the PO files in ide/package

[Lazarus] Main shows lots of changes in language files after rebuilding

2024-04-08 Thread Christo Crause via lazarus
I updated the Lazarus main version yesterday. After rebuilding the IDE, git shows that the PO files in ide/packages/ideconfig/languages changed. If these files are modified by the build process can they be updated in git please. Or is something else wrong? Christo -- ___

Re: [Lazarus] How to list available serial orts on Ubuuntu?

2022-11-28 Thread Christo Crause via lazarus
On Mon, Nov 28, 2022 at 12:31 PM Bo Berglund via lazarus < lazarus@lists.lazarus-ide.org> wrote: > > I have looked at /dev/tty* but it lists a large number of items which > makes it > impossible for me. I do not belive all of´them are real serial ports... > > What can I do to get a selector for re

Re: [Lazarus] CFI in FpDebug

2022-06-28 Thread Christo Crause via lazarus
Great news, thank you Joost. This should decrease the amount of code memory that needs to be scanned when building a stack trace - a boost particularly for remote debugging. On Tue, 28 Jun 2022, 23:22 Joost van der Sluis via lazarus, < lazarus@lists.lazarus-ide.org> wrote: > > Hi all, > > I've ju

Re: [Lazarus] I was just banned from the Lazarus Forum for no reason!

2022-06-04 Thread Christo Crause via lazarus
On Sun, Jun 5, 2022 at 5:59 AM Derek John Evans via lazarus < lazarus@lists.lazarus-ide.org> wrote: > My only feeling atm, is wtf. I just posted details on a project I've > worked on for the last 6 months using Lazarus and pas2js on a farm > environment, and then was banned! > This is quite unexp

Re: [Lazarus] Love the IDE

2022-03-14 Thread Christo Crause via lazarus
On Tue, 15 Mar 2022, 04:11 Steve Gatenby via lazarus, < lazarus@lists.lazarus-ide.org> wrote: > have been using both Atom and VsCode for a couple of weeks now (ESP coding) > > Just like to note ( hopefully without bashing the above ) > > really love the Lazarus IDE :) - it is miles above in usabil

[Lazarus] Making fpdebug more cross-platform friendly

2021-12-16 Thread Christo Crause via lazarus
Currently there are a few instances where x86 specific assumptions/code are used [1] in what I consider as the target agnostic level of fpdebug. My proposal is to move these instances to a hardware target specific unit so that these target specific handling is clearly separated. One location for

Re: [Lazarus] Programming Mechanical Simulations

2021-12-15 Thread Christo Crause via lazarus
On Wed, Dec 15, 2021 at 10:41 AM Anthony Walter via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I wanted to share this > . > > I can't stop writing code. I was inspired to design a program that can > convert any SVG drawing into a simulat

Re: [Lazarus] Debugger stops in c dll even when no breakpoint set

2021-10-29 Thread Christo Crause via lazarus
On Fri, Oct 29, 2021 at 10:41 AM Luca Olivetti via lazarus < lazarus@lists.lazarus-ide.org> wrote: > > I now tested under windows 10 64 bits (the exe is 32 bits, the previous > test was under windows 7 32 bits), and here instead of stopping once in > ntdll!RtlpNtMakeTemporaryKey it stops twice: in

Re: [Lazarus] Debugger stops in c dll even when no breakpoint set

2021-10-28 Thread Christo Crause via lazarus
On Thu, Oct 28, 2021 at 2:01 PM Luca Olivetti via lazarus < lazarus@lists.lazarus-ide.org> wrote: > > 77045AC4 cc int3 The Int3 instruction means break, so this is the expected behaviour. If there is no debugger inserted break point for this location, it must be compiled i

Re: [Lazarus] Fpdebug merge request 6

2021-09-05 Thread Christo Crause via lazarus
On Sun, Sep 5, 2021 at 8:24 PM Martin Frb via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I ve seen it. I am really rather busy ... > No worries, I do realise there are a lot of changes to work through. > I had a look at the first 2 or 3 commits some weeks ago. > From what I recall > > 1)

Re: [Lazarus] trying to read an EXE

2021-09-05 Thread Christo Crause via lazarus
On Sun, Sep 5, 2021 at 12:50 PM duilio foschi via lazarus < lazarus@lists.lazarus-ide.org> wrote: > > An alternative is to use a tool such as objdump or dumpbin to > disassemble the executable file. > > objdump seems to be a unix tool. AFAIK dumpbin will only work from Visual > Studio. > You can

[Lazarus] Fpdebug merge request 6

2021-09-04 Thread Christo Crause via lazarus
I'm busy adding xtensa/esp32 support to fpdebug, which builds on top of the AVR support. It would be helpful if the AVR merge request[1] for fpdebug gets reviewed, since the current xtensa work builds on top of this (with some refactoring). Best wishes, Christo 1. https://gitlab.com/freepascal.o

Re: [Lazarus] trying to read an EXE

2021-09-04 Thread Christo Crause via lazarus
On Sat, Sep 4, 2021 at 11:53 AM duilio foschi via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I followed Bart's suggestion and added the -al switch to the fpc.cfg file. > > This was probably the right move, as - after a new compile - I could see > the wanted .s file beside the regular EXE. >

Re: [Lazarus] trying to read an EXE

2021-09-04 Thread Christo Crause via lazarus
On Fri, Sep 3, 2021 at 11:08 PM duilio foschi via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I thought it would be easy to use an hex editor like PSPad hex, find the > number > 2005 as 07D5 then fix it (maybe after the right guess in case of multiple > hits). > As a test I compiled a simpl

Re: [Lazarus] How to restore anchor docking manager in the IDE?

2021-07-13 Thread Christo Crause via lazarus
On Tue, Jul 13, 2021 at 4:22 PM John Landmesser via lazarus < lazarus@lists.lazarus-ide.org> wrote: > Am 13.07.21 um 14:07 schrieb John Landmesser via lazarus: > > Hi, > > > > i just "ruined" layout of the anchor docking manager in the IDE. > > > > Reinstall the package does not restore the defaul

Re: [Lazarus] The "Use" button in Component List

2021-06-28 Thread Christo Crause via lazarus
On Mon, Jun 28, 2021 at 1:45 PM Michael Van Canneyt via lazarus < lazarus@lists.lazarus-ide.org> wrote: > > On Mon, 28 Jun 2021, Juha Manninen via lazarus wrote: > > > The list opens with Ctrl-Alt-P and is an alternative to the Component > > Palette. > > Is the "Use" button somehow useful? > > A c

Re: [Lazarus] Introducing new dependencies between components - how to update make files?

2021-02-21 Thread Christo Crause via lazarus
On Sun, Feb 21, 2021 at 12:08 PM Mattias Gaertner via lazarus < lazarus@lists.lazarus-ide.org> wrote: > On Sun, 21 Feb 2021 11:50:49 +0200 > Christo Crause via lazarus wrote: > > > I'm busy working on expanding AVR support in fpdebug/fpdebugdebugger. > > Some

[Lazarus] Introducing new dependencies between components - how to update make files?

2021-02-21 Thread Christo Crause via lazarus
I'm busy working on expanding AVR support in fpdebug/fpdebugdebugger. Some of the property classes overlap with classes already defined in gdbmidebugger and I want to move these classes up the hierarchy to avoid duplication. This introduces extra dependencies and I need to update the affected com