Dear all,

I'm new to this forum and hope that I found the correct section :-)

I'm teaching a C++ course in the winter semester and we just switched to Qt and Qt Creator. However I cant get the debugger to work properly.

I freshly installed the community edition of Qt & Qt Creator and MinGW using the qt online installer. When I now try to explore a segmentation fault using the debugger, there is no debugging information shown at all:

ScreenshotQtCreator.jpg

For the example above I just used a piece of code that crashes on purpose:

Qt Code:
  1. int arr[100];
  2. for (int i = 0; i < 1000; i++)
  3. arr[i] = i;
To copy to clipboard, switch view to plain text mode 

I highly appreciate any ideas & comments.

Thanks,
Sebastian