Hello

I have some problem with debugging. Always when I start debug ( on my main computer) i get Segmentation Fault from signal SIGSEGV (I cannot debug any further). It happens even when i try with simple program like this one:

Qt Code:
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main (int argc, char*argv[])
  6. {
  7. int i = 10;
  8. if (++i == i++) i++;
  9. cout << i;
  10. cin >> i;
  11. return 0;
  12. }
To copy to clipboard, switch view to plain text mode 

I tried to debug it on my notebook and it works just fine (both on windows 7). Do You have any clue what can cause such behavior?

Please note that i can run my app without any problem.