Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gcc 4.6.3でpthread_spinlock_tを使用するにはどうすればよいですか?コンパイル時にどのフラグを指定する必要がありますか?私はUbuntu12.04を使用しています!
ありがとう
オプションを追加する-pthreadか-lpthread、リンクするだけです。
-pthread
-lpthread
オプション-std=c99/c11は、使用可能なライブラリ関数をC99/C11標準ライブラリの関数に制限します
-std=c99/c11
C99 / C11言語の機能/ライブラリおよびPOSIX(および一部のBSDおよび一部のGNU拡張)APIを取得するには、GCCを使用-std=gnu99またはオプションで使用できます。-std=gnu11
-std=gnu99
-std=gnu11