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

2016-08-24 Thread Josealf.rm
t;> Regards,Jose >> >> >> >> From: Mario Emmenlauer >> To: mingw-w64-public@lists.sourceforge.net >> Sent: Tuesday, August 23, 2016 8:09 AM >> Subject: Re: [Mingw-w64-public] undefined references to _set_abort_behavior >> and ??_7type_inf

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

2016-08-24 Thread Mario Emmenlauer
t008/code--blocks-tips--tricks-and-tutorials/c-mysql > http://forums.mysql.com/read.php?167,295483,297733#msg-297733 > Regards,Jose > > > > From: Mario Emmenlauer > To: mingw-w64-public@lists.sourceforge.net > Sent: Tuesday, August 23, 2016 8:09 AM

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

2016-08-23 Thread Jose Alf.
Sent: Tuesday, August 23, 2016 8:09 AM Subject: Re: [Mingw-w64-public] undefined references to _set_abort_behavior and ??_7type_info@@6B@ Dear Josealf, awesome! The MSVCRT == 9 did solve the issue with _set_abort_behavior! Now I'm only lacking ??_7type_info@@6B@, which is un

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

Re: [Mingw-w64-public] undefined references to __GSHandlerCheck and __security_check_cookie

2016-08-22 Thread Mario Emmenlauer
Thanks Kai! I did what you suggest, and now most of the undefined references are gone! To help others with the same issue, here is what I did: I needed to go back all the way to Microsoft Visual Studio 2005, since the newer versions did not have both files. I could then find them easily in the Vis

Re: [Mingw-w64-public] undefined references to __GSHandlerCheck and __security_check_cookie

2016-08-22 Thread Kai Tietz
2016-08-22 8:58 GMT+02:00 Mario Emmenlauer : > > Dear All, > > I'm trying to link against MySQL, but it fails with undefined references > to __GSHandlerCheck and __security_check_cookie. I searched and this has > been asked before (several years back), but back then there was no solution > found. A

[Mingw-w64-public] undefined references to __GSHandlerCheck and __security_check_cookie

2016-08-22 Thread Mario Emmenlauer
Dear All, I'm trying to link against MySQL, but it fails with undefined references to __GSHandlerCheck and __security_check_cookie. I searched and this has been asked before (several years back), but back then there was no solution found. AFAIK these two where not available in MinGW's runtime, an

Re: [Mingw-w64-public] undefined references

2014-10-31 Thread Yaron Keren
Microsoft documents _mkdir() in http://msdn.microsoft.com/en-us/library/2fkk4dzw.aspx for Visual C++ 2005-2013. Maybe it was different before. 2014-10-31 22:04 GMT+02:00 Greg Jung : > So they are in direct.h ... they used to be found in io.h, as you would > get using MSVC, I presume. > > S

Re: [Mingw-w64-public] undefined references

2014-10-31 Thread Greg Jung
So they are in direct.h ... they used to be found in io.h, as you would get using MSVC, I presume. So why doesn't io.h #include .. should it? hmm .. direc.h and io.h should have been included under the following from filefn.h, which feeds filefn.cpp: #if defined(__WINDOWS__) && !defined(__WXMI

Re: [Mingw-w64-public] undefined references

2014-10-29 Thread Yaron Keren
Hi, These _functions are in same as Visual C++. Maybe filefn.cpp does not #include it? Yaron 2014-10-30 0:51 GMT+02:00 Greg Jung : > Hi all, > Just as a matter of example, I run into the following error compiling > wxMSW-2.8.12 using mingw/msys- gcc-4.8.2 (sjlj, win32): > > ../src/common/fi

[Mingw-w64-public] undefined references

2014-10-29 Thread Greg Jung
Hi all, Just as a matter of example, I run into the following error compiling wxMSW-2.8.12 using mingw/msys- gcc-4.8.2 (sjlj, win32): ../src/common/filefn.cpp: In function 'bool wxMkdir(const wxString&, int)': ../src/common/filefn.cpp:1253:30: error: '_mkdir' was not declared in this scope