From 1e821bc1f1fb7a6b73ff1468b8b34f61b78cf304 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Mon, 6 May 2019 18:54:31 +0200 Subject: Change to AbsInt version string. The AbsInt build number no longer contains "release", so it must be printed additionally. --- cparser/Diagnostics.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cparser/Diagnostics.ml') diff --git a/cparser/Diagnostics.ml b/cparser/Diagnostics.ml index 2b8a3eb4..2eaf6436 100644 --- a/cparser/Diagnostics.ml +++ b/cparser/Diagnostics.ml @@ -473,7 +473,7 @@ let raise_on_errors () = let crash exn = if Version.buildnr <> "" && Version.tag <> "" then begin let backtrace = Printexc.get_backtrace () in - eprintf "%tThis is CompCert, %s, Build:%s, Tag:%s%t\n" + eprintf "%tThis is CompCert, Release %s, Build:%s, Tag:%s%t\n" bc Version.version Version.buildnr Version.tag rsc; eprintf "Backtrace (please include this in your support request):\n%s" backtrace; -- cgit