What is g++'s -pthread equiv in clang?

clang, g++, gcc, multithreading, pthreads

Solution

Clang supports `-pthread`. May be in the latest builds, so update it and try again.

Problem

I'm switching over from g++ to clang however, in g++, I have the -pthread flag, which clang does not seem to recognize. What is the equiv in clang? EDIT: My clang build is pulling from svn on March 5 2010.

Original source