在 OS X 中使用带有 clang 的 pthread 库的编译器/链接器要求是什么?
使用 GCC,我知道使用 -pthread 设置适当的编译器/链接器选项,但我不确定 OS X 是否带有 clang。
air:~ jose$ clang++ -c test.cpp -pthread
air:~ jose$ clang++ -o test -pthread test.o
clang: warning: argument unused during compilation: '-pthread'
air:~ jose$ g++ -c test.cpp -pthread
air:~ jose$ g++ -o test -pthread test.o