mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 05:20:50 -05:00
fix compile error on AIX/gcc-2.9 because of unknown std::stringstream
This commit is contained in:
@@ -454,7 +454,7 @@ cmExtraCodeLiteGenerator::GetBuildCommand(const cmMakefile* mf) const
|
||||
else if ( generator == "MinGW Makefiles" ||
|
||||
generator == "Unix Makefiles" )
|
||||
{
|
||||
std::stringstream ss;
|
||||
cmOStringStream ss;
|
||||
ss << make << " -j " << this->CpuCount;
|
||||
buildCommand = ss.str();
|
||||
}
|
||||
@@ -482,7 +482,7 @@ cmExtraCodeLiteGenerator::GetSingleFileBuildCommand
|
||||
std::string generator = mf->GetSafeDefinition("CMAKE_GENERATOR");
|
||||
if ( generator == "Unix Makefiles" || generator == "MinGW Makefiles" )
|
||||
{
|
||||
std::stringstream ss;
|
||||
cmOStringStream ss;
|
||||
ss << make << " -f$(ProjectPath)/Makefile $(CurrentFileName).cpp.o";
|
||||
buildCommand = ss.str();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user