I'm new at programming with Mac and I'm trying to use Boost::thread for threading. My project builds on Windows but it is not building for me on my Mac. I'm also kinda new with XCode too and we are using Xcode 3.2.6 currently.
Any help would be greatly appreciated.
Here is my main areas of problem:
#include <boost/thread.hpp>
....
....
void somefunc()
{
boost::thread t(work, arg);
t.join();
....
}
My errors are:
- 'thread' is not a member of 'boost'
- Expected ';' before 't'
- 't' was not declared in this scope
But again, it builds on my Windows so I'm lost as to why my Mac is not building... Thanks in advance for any help.
boost::thread... – bames53 Oct 29 '12 at 18:52