User forums > General (but related to Code::Blocks)
TDM-GCC 4.5 series (Latest: 4.5.2 - 2011-03-27)
MortenMacFly:
Thank you John, excellent work, as usual. 8)
ptDev:
Excellent! Thank you for your hard work, you're a life saver!
ptDev:
--- Quote from: killerbot on March 28, 2011, 07:43:54 am ---this is great, as always.
The fact that 64 bit build currently is not possible of wx/CB, is that something you can influence, or is this a mingw or wxwidgets issue ?
--- End quote ---
I believe that this is a wxWidgets issue. There are some people working on it, but nobody there promised any 64-bit support prior to 3.0.
byuu:
Hi, thank you very much for the 4.5.2 release, as well as for your previous releases.
I hate to nag, but have you had any luck with the std::thread support in this new release? Or is there an alternative to utilize this functionality with your builds?
I have a few applications that desperately need threading support, but I am averse to writing non-portable code to do it.
Thanks again for putting this package together for everyone!
oBFusCATed:
You can use boost.threads + something like:
--- Code: ---namespace mine
{
#ifdef HAS_CPP_THREADS
using std::thread;
#else
using boost::thread;
#endif
}
--- End code ---
Then in you code you use mine::thread and you have some flexibility. :lol:
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version