bug-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-mailutils] guile 1.8 & gcc 5 (problem with build 20151028 git s


From: Sergey Poznyakoff
Subject: Re: [bug-mailutils] guile 1.8 & gcc 5 (problem with build 20151028 git snapshot)
Date: Mon, 09 Nov 2015 16:16:02 +0200

Thanks.  That confirms that the problem is due to cc generating
more location markers, than guile snarfer is able to handle.
Here's a work around that should help.  Please cd to the subdirectory
gint and apply the following patch:

diff --git a/clexer.l b/clexer.l
index 6201d12..c6b97d5 100644
--- a/clexer.l
+++ b/clexer.l
@@ -90,7 +90,7 @@ WS [ \t\v\f]
 %%
 \/\*(\n|[^*]|\*[^/])*\*\/   { advance_line (yytext);
                               outtok ("comment", yytext); }
-#.*\n                       { outstr ("hash"); line_no++; }
+#.*\n                       { line_no++; }
 \n                          { outstr ("eol"); line_no++; }
 {WS}+                       ;
 \\                          ;

Then remove libmu_scm/guile-procedures.texi and run make again.  Let me
know if it helps (and please, keep Cc).

Regards,
Sergey



reply via email to

[Prev in Thread] Current Thread [Next in Thread]