ENH: Add support for -pthread

This commit is contained in:
Andy Cedilnik 2003-08-01 15:33:32 -04:00
parent 1f3106c1b0
commit f5559b0ec8
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ void cmLocalUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
// if a variable expands to nothing.
if (lib->first.size() == 0) continue;
// if it is a full path break it into -L and -l
cmsys::RegularExpression reg("([ \t]*\\-l)|([ \t]*\\-framework)|(\\${)");
cmsys::RegularExpression reg("([ \t]*\\-l)|([ \t]*\\-framework)|(\\${)|([ \t]*\\-pthread)");
if(lib->first.find('/') != std::string::npos
&& !reg.find(lib->first))
{