Add a warning when variables are used uninitialized.
This commit is contained in:
parent
cd626ea66e
commit
48b5b85593
|
@ -123,6 +123,11 @@ char* cmCommandArgumentParserHelper::ExpandVariable(const char* var)
|
|||
const char* value = this->Makefile->GetDefinition(var);
|
||||
if(!value && !this->RemoveEmpty)
|
||||
{
|
||||
if(!this->Makefile->VariableCleared(var))
|
||||
{
|
||||
std::cerr << this->FileName << ":" << this->FileLine << ":" <<
|
||||
" warning: uninitialized variable \'" << var << "\'\n";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
if (this->EscapeQuotes && value)
|
||||
|
|
|
@ -43,6 +43,7 @@ class cmMakefile::Internals
|
|||
{
|
||||
public:
|
||||
std::stack<cmDefinitions, std::list<cmDefinitions> > VarStack;
|
||||
std::set<cmStdString> VarRemoved;
|
||||
};
|
||||
|
||||
// default is not to be building executables
|
||||
|
@ -1694,9 +1695,19 @@ void cmMakefile::AddDefinition(const char* name, bool value)
|
|||
#endif
|
||||
}
|
||||
|
||||
bool cmMakefile::VariableCleared(const char* var) const
|
||||
{
|
||||
if(this->Internal->VarRemoved.find(var) != this->Internal->VarRemoved.end())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void cmMakefile::RemoveDefinition(const char* name)
|
||||
{
|
||||
this->Internal->VarStack.top().Set(name, 0);
|
||||
this->Internal->VarRemoved.insert(name);
|
||||
#ifdef CMAKE_BUILD_WITH_CMAKE
|
||||
cmVariableWatch* vv = this->GetVariableWatch();
|
||||
if ( vv )
|
||||
|
|
|
@ -61,6 +61,10 @@ public:
|
|||
unsigned int GetCacheMajorVersion();
|
||||
unsigned int GetCacheMinorVersion();
|
||||
|
||||
/* return true if a variable has been set with
|
||||
set(foo )
|
||||
*/
|
||||
bool VariableCleared(const char* ) const;
|
||||
/** Return whether compatibility features needed for a version of
|
||||
the cache or lower should be enabled. */
|
||||
bool NeedCacheCompatibility(int major, int minor);
|
||||
|
|
Loading…
Reference in New Issue