ENH: Encode object files with funny characters in the name. It should fix Bug #418 - Borland 5.5.1, Templates/*.cxx files with '+' chars used in execs

This commit is contained in:
Andy Cedilnik
2004-04-28 10:15:40 -04:00
parent 14ba8b5df9
commit ddf814f964
2 changed files with 53 additions and 4 deletions
+7
View File
@@ -232,12 +232,19 @@ protected:
/** Output an echo command to the Makefile */
void OutputEcho(std::ostream& fout, const char *msg);
/**
* Convert source file name to a safe object file name. Safe here means that
* it will not clash with compilers or linkers.
*/
std::string& CreateSafeUniqueObjectFileName(const char* sin);
///! final processing for a path to be put in a makefile
protected:
int m_MakefileVariableSize;
std::map<cmStdString, cmStdString> m_MakeVariableMap;
std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap;
bool m_IgnoreLibPrefix;
std::string m_IncludeDirective;
std::string m_MakeSilentFlag;