"-pthread" appends -lpthread after the object files list passed to the linker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241485
91177308-0d34-0410-b5e6-
96231b3b80d8
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lgmon");
- // FIXME: what to do about pthreads library?
- // Currently required for OpenMP and posix-threading libgcc,
- // does not exists in mingw.org.
- //CmdArgs.push_back("-lpthread");
+ if (Args.hasArg(options::OPT_pthread))
+ CmdArgs.push_back("-lpthread");
// add system libraries
if (Args.hasArg(options::OPT_mwindows)) {