I have a C++ program that I compiled in Ubuntu using the x86_64-w64-mingw32-g++ compiler, and the following linker flags (probably the wrong terminology): -static-libgcc -static-libstdc++
The program compiles fine, but when I go to try to run it with WINE, it nearly completes and crashes at the end with the following error
wine: Call from 0x7fde2826ee6a to unimplemented function MSVCR90.dll.__C_specific_handler, aborting
If I run the same program (no recompile) under Windows 7 (I dual boot), the program runs with no issues, so I'm fairly certain that this is a wine issue.
My program is using the NxCore DataFeed API (the only reason I would even go anywhere near anything windows related...), and they also offer a 32bit DLL for their API, which I can get to run just fine under wine using the i686-w64-mingw32-g++ compiler. I dont want to have to do this though, since I'm running a 64 Bit machine (Intel I7), and I THINK the x86 compiler is more appropriate for me (I could be wrong?).
I am not useing the "wineg++" compiler because it can't seem to find "windows.h", and the NxCore API needs that.
Any help would be greatly appreciated.
Thanks, Brad
The program compiles fine, but when I go to try to run it with WINE, it nearly completes and crashes at the end with the following error
wine: Call from 0x7fde2826ee6a to unimplemented function MSVCR90.dll.__C_specific_handler, aborting
If I run the same program (no recompile) under Windows 7 (I dual boot), the program runs with no issues, so I'm fairly certain that this is a wine issue.
My program is using the NxCore DataFeed API (the only reason I would even go anywhere near anything windows related...), and they also offer a 32bit DLL for their API, which I can get to run just fine under wine using the i686-w64-mingw32-g++ compiler. I dont want to have to do this though, since I'm running a 64 Bit machine (Intel I7), and I THINK the x86 compiler is more appropriate for me (I could be wrong?).
I am not useing the "wineg++" compiler because it can't seem to find "windows.h", and the NxCore API needs that.
Any help would be greatly appreciated.
Thanks, Brad
.