Re: [Mingw-w64-public] undefined references to _set_abort_behavior and ??_7type_info@@6B@

2016-08-23 Thread Jose Alf.
Mario, Sorry. I don't know how to solve that. As I understand that symbol is const type_info::vftable, related to virtual function table/rtti - run time type information, and even if you can link it, I doubt your binary will work. I think you should try to get a libmysql compiled with mingw or c

Re: [Mingw-w64-public] [PATCH] math: Make sure NAN/INF is preserved in floor/ceil functions on ARM

2016-08-23 Thread Martin Storsjö
On Thu, 18 Aug 2016, Martin Storsjö wrote: --- The indentation probably looks wonky in ths patch, but I'm trying to match the style of the rest of the arm assembly below, which uses tabs, equal to 4 spaces. This probably also should be done to a lot of other math functions, but I only ran into

Re: [Mingw-w64-public] undefined references to _set_abort_behavior and ??_7type_info@@6B@

2016-08-23 Thread Mario Emmenlauer
Dear Josealf, awesome! The MSVCRT == 9 did solve the issue with _set_abort_behavior! Now I'm only lacking ??_7type_info@@6B@, which is undefined in mysqlclient.lib. Do you know how I could get this? Thanks and all the best, Mario On 23.08.2016 13:22, Josealf.rm wrote: > Link against MSVC

Re: [Mingw-w64-public] undefined references to _set_abort_behavior and ??_7type_info@@6B@

2016-08-23 Thread Josealf.rm
Link against MSVCRT >= 9 ? Something like : gcc -o out.exe yourmain.c -D__MSVCRT_VERSION__=0x900 -lmsvcr90 > El 23/08/2016, a las 4:24 a.m., Mario Emmenlauer > escribió: > > > Dear all, > > I've managed to find several more symbols, but I'm still left without > being able to link MySQL. I

[Mingw-w64-public] undefined references to _set_abort_behavior and ??_7type_info@@6B@

2016-08-23 Thread Mario Emmenlauer
Dear all, I've managed to find several more symbols, but I'm still left without being able to link MySQL. Its quite a standard library, would be great if I could get it to link. The remaining missing symbols are: _set_abort_behavior ??_7type_info@@6B@ Can you please help me get them fro