maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   Eclipse - Debugging (https://talk.maemo.org/showthread.php?t=60945)

Figa 2010-08-23 16:45

Eclipse - Debugging
 
Hi, I have problem in eclipse. When I run debug I get this error.
Code:

Could not find gdb version for native-gdb --version

Exit code: 127

Errors:

/home/figa/.esbox/run35.sh: line 2: native-gdb: command not found

What is wrong? Thank you for help.

Figa 2010-08-24 15:22

Re: Eclipse - Debugging
 
OK I solved it. I have other problem. I run program from eclipse debugger and it crashed. I did it from pure gdb and I got this error:
Code:

(gdb) run
Starting program: /home/figa/workspace/project/program
free(): invalid pointer 0x9b86600!
Segmentation fault (core dumped)

I have searched that it could be bad declaration, but how can I get better info about this crash? When I run program everything is ok. How it is possible? With this very simple code I get segmentation fault too:
main.cpp
Code:

#include <QApplication>
#include "window.cpp"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Window window;
    window.show();
    return app.exec();
}

window.h
Code:

#ifndef WINDOW_H
#define WINDOW_H
#include <QMainWindow>
#include <QComboBox>
#include <QWidget>
#include <QObject>
#include <QPushButton>
#include <QLabel>
#include <QFont>
#include <QHBoxLayout>
#include <QSignalMapper>

class Window : public QMainWindow
{
        Q_OBJECT

public:
        Window();
        ~Window();
};

#endif //WINDOW_H

window.cpp
Code:

#include <QtGui>
#include <QAction>
#include <QWidget>
#include <QMainWindow>
#include "window.h"

Window::Window()
    : QMainWindow()
{
       
}


Window::~Window() {

}

Thanks for help.

dwaradzyn 2010-08-30 21:34

Re: Eclipse - Debugging
 
I think the variable "window" could be unitialized in your code. Could you try changing
Code:

Window window;
to
Code:

Window window = new Window();
Or something similiar (long time since I last used C++). Hope it helps.


All times are GMT. The time now is 07:09.

vBulletin® Version 3.8.8