|
|
@@ -91,7 +91,7 @@ struct LoadedCommandImpl : cmLoadedCommandInfo
|
|
|
{
|
|
|
if (this->Destructor) {
|
|
|
SignalHandlerGuard guard(this->Name);
|
|
|
-#if defined(__NVCOMPILER)
|
|
|
+#if defined(__NVCOMPILER) || defined(__LCC__)
|
|
|
static_cast<void>(guard); // convince compiler var is used
|
|
|
#endif
|
|
|
this->Destructor(this);
|
|
|
@@ -107,7 +107,7 @@ struct LoadedCommandImpl : cmLoadedCommandInfo
|
|
|
int DoInitialPass(cmMakefile* mf, int argc, char* argv[])
|
|
|
{
|
|
|
SignalHandlerGuard guard(this->Name);
|
|
|
-#if defined(__NVCOMPILER)
|
|
|
+#if defined(__NVCOMPILER) || defined(__LCC__)
|
|
|
static_cast<void>(guard); // convince compiler var is used
|
|
|
#endif
|
|
|
return this->InitialPass(this, mf, argc, argv);
|
|
|
@@ -116,7 +116,7 @@ struct LoadedCommandImpl : cmLoadedCommandInfo
|
|
|
void DoFinalPass(cmMakefile* mf)
|
|
|
{
|
|
|
SignalHandlerGuard guard(this->Name);
|
|
|
-#if defined(__NVCOMPILER)
|
|
|
+#if defined(__NVCOMPILER) || defined(__LCC__)
|
|
|
static_cast<void>(guard); // convince compiler var is used
|
|
|
#endif
|
|
|
this->FinalPass(this, mf);
|