Active Topics

 


Reply
Thread Tools
Posts: 270 | Thanked: 239 times | Joined on Dec 2009 @ Czech Republic
#1
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.
 
Posts: 270 | Thanked: 239 times | Joined on Dec 2009 @ Czech Republic
#2
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.
 
Posts: 317 | Thanked: 787 times | Joined on Oct 2009 @ Krakow, Poland
#3
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.
 
Reply


 
Forum Jump


All times are GMT. The time now is 16:16.