6

OS X で clang を使用して pthread ライブラリを使用するためのコンパイラ/リンカー要件は何ですか。

GCCでは、-pthreadを使用すると適切なコンパイラ/リンカーオプションが設定されることはわかっていますが、clangを使用したOS Xについてはわかりません。

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 
4

1 に答える 1