0

I am trying to run an application based on FLTK2.0. The application builds successfully without any error message but when I try to run it only a command line window appears. I ran it in debugger and a popup box appears which says that

"the inferior stopped because it received a signal from operating system. Signal name: SIGSEGV, signal meaning: segmentation fault

Please refer to this Question for reference

Community
  • 1
  • 1
  • I've never used mingw with FLTK2 on a windows platform. It works fine if you run it with visual studio express. Just use the solution in the IDE directory and you'll be up in 15 minutes. – cup Sep 06 '14 at 05:30
  • SIGSEGV may happen for various reasons. It is most likely not caused by FLTK (or you encountered a FLTK bug - if so, please report it)... Dereferencing a null pointer will cause SIGSEGV and it is the most common C++ error... – DejanLekic Sep 06 '14 at 18:35
  • Second typical SIGSEGV problem: `char *s = "hello world"; *s = 'H';` – DejanLekic Sep 06 '14 at 19:26
  • If it is a short program, can you post it? – cup Sep 08 '14 at 04:10
  • How is that question relevant to what you are asking?? – DejanLekic Sep 08 '14 at 08:44

0 Answers0