Welcome, Guest
Username: Password: Remember me
Discussions for CodeTyphon Studio Installation and Setup.
  • Page:
  • 1

TOPIC:

CodeTyphon ver 4.20 works perfect 11 years 3 weeks ago #3643

  • FredyCC
  • FredyCC's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Database/Developer
  • Posts: 60
  • Thank you received: 10
Thank you very much and congratulations CT team, this version it has worked great in Linux Mint Xfce 32-bit.

I liked the new splash.

Crossbuild for ARM and Windows is OK :)

regards
The following user(s) said Thank You: Miquel Matas

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3660

  • ExDatis
  • ExDatis's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 110
  • Thank you received: 9
Thank you very much CT team, excellent, I'm impressed!
Best regards!
p.s. openSuSe12.3 32 and win7 ultimate 32

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3661

  • Dibo
  • Dibo's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 37
  • Thank you received: 1
I have strange issue with debuging. Step Over (F8) is working strange. On ordinal types it working fine, but when I want step over some object property etc. I get assembler window and press F8 sill stay on this line. For example:
1. Drop button and combobox on form
2. Set some items into combo items property.
3. Add button OnClick method with folowing code:
procedure TForm1.Button1Click(Sender: TObject);
var i: Integer;
begin
  i := 1;
  i := 2;
  i := 3;
  Button1.Caption := ComboBox1.Items.Strings[ComboBox1.ItemIndex];
  i := 4;
  i := 5;
  i := 6;
end;
4. Set breakpoint on first line and run application.
5. Click on button, F8 works on "i := ..." lines but on Button1.Caption some strange behavior occur

CT 4.20
Linux Mint 14 64bit, XFCE (GTK)

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3662

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4513
  • Thank you received: 1102
Thanks guys
have fun...
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3663

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4513
  • Thank you received: 1102

dibo wrote: I have strange issue with debuging. Step Over (F8) is working strange. On ordinal types it working fine, but when I want step over some object property etc. I get assembler window and press F8 sill stay on this line. For example:
1. Drop button and combobox on form
2. Set some items into combo items property.
3. Add button OnClick method with folowing code:

procedure TForm1.Button1Click(Sender: TObject);
var i: Integer;
begin
  i := 1;
  i := 2;
  i := 3;
  Button1.Caption := ComboBox1.Items.Strings[ComboBox1.ItemIndex];
  i := 4;
  i := 5;
  i := 6;
end;
4. Set breakpoint on first line and run application.
5. Click on button, F8 works on "i := ..." lines but on Button1.Caption some strange behavior occur

CT 4.20
Linux Mint 14 64bit, XFCE (GTK)


We will check this Sir
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3665

  • Dibo
  • Dibo's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 37
  • Thank you received: 1

sternas wrote: We will check this Sir


I got back to the CT 4.10 and debugging is working fine now

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3689

  • avra
  • avra's Avatar
  • Visitor
  • Visitor

dibo wrote: I got back to the CT 4.10 and debugging is working fine now

Have you tried to replace GDB.EXE in 4.20 with GDB.EXE from 4.10? There were debugging issues in the past that were solved in a similar way, and it was new GDB version fault.

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3691

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4513
  • Thank you received: 1102
My suggestion,
try to use type of Debug info: Stabs (-gs)
in your Project debug options
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3695

  • Dibo
  • Dibo's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 37
  • Thank you received: 1

avra wrote:

dibo wrote: I got back to the CT 4.10 and debugging is working fine now

Have you tried to replace GDB.EXE in 4.20 with GDB.EXE from 4.10? There were debugging issues in the past that were solved in a similar way, and it was new GDB version fault.

I have linux mint, practically from today - Xubuntu (debian distro also). Seems that CT doesn't ships own GDB but using system GDB (debugger path in lazarus options point to /usr/bin/gdb). So I supose that both 4.10 and 4.20 usign same GDB but 4.20 has some bad Lazarus/FPC svn revision

My suggestion,
try to use type of Debug info: Stabs (-gs)
in your Project debug options

Doesn't help

Please Log in or Create an account to join the conversation.

Last edit: by Dibo.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3696

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4513
  • Thank you received: 1102
Sir
on Linux/Unix OSes CT use system GDB
on Windows, we include with CT our GDB SVN builds (7.5.50 SVN 12-9-2012)

So give us more info:
-Your GDB version, on your Linux Box?
-Which Linux Mint or Xubuntu Version?
-Your Linux Box have Custom structure?
-etc
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3698

  • Dibo
  • Dibo's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 37
  • Thank you received: 1
Xubuntu 12.10 64bit (but same error on Linux Mint 14 64bit XFCE)

From Xubuntu:
dibo@dibo-530U3C:~$ gdb --version
GNU gdb (GDB) 7.5-ubuntu
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.

Please Log in or Create an account to join the conversation.

CodeTyphon ver 4.20 works perfect 11 years 2 weeks ago #3700

  • dennis
  • dennis's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 9
  • Thank you received: 0
Not here, it does not. Windows 7 ultimate. With version 4.1, I could click on the 'Lazarus' icon and Lazarus would load and work OK. When I do the same with version 4.2, nothing happens. I installed it exactly in accordance to the instructions. I have tried with Lazarus bigIDE and Lazarus small ide. The examples in the help file are still the same time-expired wrong and unhelpful information. Having spent many frustrating hours trying and failing to make CodeTyphon work, more in sorrow than in anger, I'm off to delete codetyphon and reinstall stand-alone Lazarus until the codetyphon writers are able and willing to bring their obviously considerable efforts to a properly stable working state and provide the proper 'help' files, support, and 'HowTo' documentation that are currently almost totally missing.

Please Log in or Create an account to join the conversation.

  • Page:
  • 1