xcode iOS上的std::线程

41ik7eoe  于 2023-01-18  发布在  iOS
关注(0)|答案(1)|浏览(129)

std::thread for iOS的所有实现是否内部都包含<pthread.h>
我知道前一段时间,this only worked with g++ and -lpthread,但许多升级已经到达自那时以来。

col17t5w

col17t5w1#

答案是肯定的,至少在Xcode的7.2版本(7C68)中,/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/thread有无条件

#include <pthread.h>

相关问题