You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following link error occurs when building a xcode project using the boost.framework (1.53) for the iPhone simulator? The line of code that causes the link error is just creating a boost::thread. The ios device build works fine.
Undefined symbols for architecture i386:
"boost::thread::start_thread_noexcept()", referenced from:
boost::thread::start_thread()
The text was updated successfully, but these errors were encountered:
check you build target's SDK version and make sure that matches the one used to built boost.framework (6.1 in my case). You might also want to turn off c++11 support as the built script by default does not built with c++11. In Xcode project setting, that should be
The following link error occurs when building a xcode project using the boost.framework (1.53) for the iPhone simulator? The line of code that causes the link error is just creating a boost::thread. The ios device build works fine.
Undefined symbols for architecture i386:
"boost::thread::start_thread_noexcept()", referenced from:
boost::thread::start_thread()
The text was updated successfully, but these errors were encountered: