From 3fc5f3e55f61c49ad04a5c51771849ed3a195b87 Mon Sep 17 00:00:00 2001
From: BenceJanosSzabo <bence.janos.szabo@ericsson.com>
Date: Thu, 8 Dec 2016 10:04:22 +0100
Subject: [PATCH] when wrong compiler version detected, suggest make clean
 (artf743325)

Change-Id: I82483baf2cec0819755be4314cf12026c183796c
Signed-off-by: BenceJanosSzabo <bence.janos.szabo@ericsson.com>
---
 compiler2/titanver         | 3 ++-
 compiler2/ttcn3/compiler.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/compiler2/titanver b/compiler2/titanver
index d76fd1e43..10e1f1cfa 100644
--- a/compiler2/titanver
+++ b/compiler2/titanver
@@ -113,7 +113,8 @@ if ( scalar keys %versions > 1 ) {
         warn "Compiled with $compiler $ver: ", join(', ', @$ref), "\n";
     }
     die "Error! All object files should be compiled with the same compiler version.\n"
-    . "The following $compiler versions were detected: ", join(', ', keys %versions);
+    . "The following $compiler versions were detected: ", join(', ', keys %versions),
+    "\nRun make clean and make to recompile the project if the version of the compiler changed recently.";
 }
 
 __END__
diff --git a/compiler2/ttcn3/compiler.c b/compiler2/ttcn3/compiler.c
index 1f029780b..aec9a10ca 100644
--- a/compiler2/ttcn3/compiler.c
+++ b/compiler2/ttcn3/compiler.c
@@ -245,7 +245,8 @@ void write_output(output_struct *output, const char *module_name,
 	    "#if TTCN3_VERSION != %d\n"
 	    "#error Version mismatch detected.\\\n"
 	    " Please check the version of the %s compiler and the "
-	    "base library.\n"
+	    "base library.\\\n"
+	    " Run make clean and rebuild the project if the version of the compiler changed recently.\n"
 	    "#endif\n",
 	    TTCN3_VERSION, is_ttcn ? "TTCN-3" : "ASN.1");
 	/* Check the platform matches */
-- 
GitLab