gdb/mi, frontend, windows


 
Thread Tools Search this Thread
Top Forums Programming gdb/mi, frontend, windows
# 1  
Old 07-19-2011
gdb/mi, frontend, windows

Hi,

I am doing frontend for gdb.
Got such things in place:
- gdb from mingw package
- windows OS
- sample aplication to be debugged
- my application (frontend)

I can open sample application under gdb and debug it.
What I want is to connect somehow from my application to gdb and debug sample application sending and receiving gdb/mi commands.

Do not have any idea how to connect from my application to gdb (through gdb/mi). There is nothing about it on the internet.
Has anyone ever experienced such problems?
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Ubuntu

Software to work and convert to pdf with good frontend

Hello, I use pdftk for join pdf and split pages and more option! But this is through terminal! I need the software with frontend and, especially, with option on button right mouse hover icon document whit option "convert direct to pdf". This software, or frontend exist? Thanks (0 Replies)
Discussion started by: enodev
0 Replies

2. UNIX for Advanced & Expert Users

High available frontend to WebApps behind a firewall

Hello, my question is about proposed implementation of high available and secure FrontEnd to WebApps behind a firewall. The components of the network and their relationships are as follows: 2 WebApps servers behind a firewall (BackEnd), denoted by GUI1 and GUI2, running Web Applications ... (0 Replies)
Discussion started by: MaciejS
0 Replies

3. Programming

cdrecord frontend for dvd burning

I came across a small script called pyBurn (attached) which is a frontend for cdrecord. But it only burns cd's and doesn't even recognize my dvd-burner. I'm still learning python (very early stages) so I can't do much with it... is it possible to make it burn dvd's too? (I'm running Ubuntu Gutsy... (0 Replies)
Discussion started by: el mariachi
0 Replies

4. UNIX for Dummies Questions & Answers

Is it possible to combine MPI (as backend) and GTK (as frontend)

Hello All, i wonder if it make sense to attemp to use GTK to create a GUI as frontend handling data input and result display, and to use MPI to implement data process in the backend. I would be very grateful if you can provide an example code. Thanks, (0 Replies)
Discussion started by: cy163
0 Replies

5. UNIX for Dummies Questions & Answers

best frontend for iptables?

Hi, I'm dealing with iptables on Linux, and even if I personally like text configuration, I believe in the case of a firewall would be nice to have a graphical tool. I've cheked several frontends like Vuurmuur and UIF, but I wanted to know your opinion on the subject. Thanks.. (3 Replies)
Discussion started by: piltrafa
3 Replies
Login or Register to Ask a Question
GZEXE(1)						      General Commands Manual							  GZEXE(1)

NAME
gzexe - compress executable files in place SYNOPSIS
gzexe name ... DESCRIPTION
The gzexe utility allows you to compress executables in place and have them automatically uncompress and execute when you run them (at a penalty in performance). For example if you execute ``gzexe /usr/bin/gdb'' it will create the following two files: -rwxr-xr-x 1 root root 1026675 Jun 7 13:53 /usr/bin/gdb -rwxr-xr-x 1 root root 2304524 May 30 13:02 /usr/bin/gdb~ /usr/bin/gdb~ is the original file and /usr/bin/gdb is the self-uncompressing executable file. You can remove /usr/bin/gdb~ once you are sure that /usr/bin/gdb works properly. This utility is most useful on systems with very small disks. OPTIONS
-d Decompress the given executables instead of compressing them. SEE ALSO
gzip(1), znew(1), zmore(1), zcmp(1), zforce(1) CAVEATS
The compressed executable is a shell script. This may create some security holes. In particular, the compressed executable relies on the PATH environment variable to find gzip and some standard utilities (basename, chmod, ln, mkdir, mktemp, rm, sleep, and tail). BUGS
gzexe attempts to retain the original file attributes on the compressed executable, but you may have to fix them manually in some cases, using chmod or chown. GZEXE(1)