@andrea.c84 wrote:
Hello,
I'm having a problem with a custom application developed with open-frameworks that I'm not able to really understand/solve by myself.
I'm able to reproduce the same problem I'm facing with my application with the openframeworks (0.9.3) EmptyExample.I compile the EmptyExample application with msys2-mingw on a Win-10 PC.
The application (debug/release) runs fine on this machine.When I move the application (.exe) on another machine (Win7) with all the dll prooperly installed (I have installed msys2 and set the correct path):
- the application compiled with the debug profile works fine;
- the application compiled with the release profile crashes with a SIGILL.I tried to further investigate running the release application using gdb and it seems that the application is crashing for some exception in the ofFpsCounter creator (it seems to me that there is some problem in the generated .exe file that, by the way, works correcly in the Win10 machine).
GNU gdb (GDB) 7.12.1
...
Reading symbols from emptyExample_w10_2.exe...done.
(gdb) start
Temporary breakpoint 1 at 0x625363
Starting program: C:\of_v0.9.3_msys2\apps\myApps\emptyExample\bin\emptyExample_w
10_2.exe
[New Thread 1304.0x13c4]Temporary breakpoint 1, 0x00625363 in main ()
(gdb) continue
Continuing.Program received signal SIGILL, Illegal instruction.
0x005fadde in std::Dequebase<double, std::allocator >::Minitialize_m
ap(unsigned int) ()
(gdb) bt0 0x005fadde in std::Dequebase<double, std::allocator >::Minitiali
ze_map(unsigned int) ()
1 0x005faf1f in std::Dequebase<double, std::allocator >::Dequebase
() ()
2 0x00419437 in ofFpsCounter::ofFpsCounter(double) ()
3 0x00404d76 in ofCoreEvents::ofCoreEvents() ()
4 0x0042ab5b in ofAppGLFWWindow::ofAppGLFWWindow() ()
5 0x00403b58 in ofMainLoop::createWindow(ofWindowSettings const&) ()
6 0x00401cab in ofCreateWindow(ofWindowSettings const&) ()
7 0x0040274c in ofSetupOpenGL(int, int, ofWindowMode) ()
8 0x0062538a in main ()
Am i missing something? Is there any option I can specify to mingw to generate a .exe that is backward compatible with previous version of windows?
Any idea? Thank you
AndreaPS: I tried to compile the same EmptyExample application on the Win7 machine and the generated .exe works fine in windows 10 (both release/debug)
Posts: 1
Participants: 1