使用野牛时看到垃圾

时间:2009-10-11 23:44:53

标签: bison lex

我正在尝试使用 Bison 进行编译(我不知道这是否是正确使用的单词),但是当我尝试编译此源代码时:

%{
#define YYSTYPE double
#include <math.h>
#include <stdio.h>
%}
%token NUM
%%
input:    /* empty */
        | input line
;

line:     '\n'
        | exp '\n'  { printf ("\t%.10g\n", $1); }
;

exp:      NUM             { $$ = $1;         }
        | exp exp '+'     { $$ = $1 + $2;    }
        | exp exp '-'     { $$ = $1 - $2;    }
        | exp exp '*'     { $$ = $1 * $2;    }
        | exp exp '/'     { $$ = $1 / $2;    }
      /* Exponentiation */
        | exp exp '^'     { $$ = pow ($1, $2); }
      /* Unary minus    */
        | exp 'n'         { $$ = -$1;        }
;
%%

/* Lexical analyzer returns a double floating point 
   number on the stack and the token NUM, or the ASCII
   character read if not a number.  Skips all blanks
   and tabs, returns 0 for EOF. */

#include <ctype.h>
#include <stdio.h>

yyerror(const char *s)

yylex ()
{
  int c;

  /* skip white space  */
  while ((c = getchar ()) == ' ' || c == '\t')  
    ;
  /* process numbers   */
  if (c == '.' || isdigit (c))                
    {
      ungetc (c, stdin);
      scanf ("%lf", &yylval);
      return NUM;
    }
  /* return end-of-file  */
  if (c == EOF)                            
    return 0;
  /* return single chars */
  return c;                                
}

yyerror (s)  /* Called by yyparse on error */
     char *s;
{
  printf ("%s\n", s);
}

main ()
{
  yyparse ();
}

我在控制台中找到了一些“垃圾”(不是在文件或类似的东西中),看看:http://pastie.org/650893

最诚挚的问候。

1 个答案:

答案 0 :(得分:1)

这是一个m4输入文件或m4标头。 Bison和flex使用一个名为m4的古老unix宏处理器实用程序,这就是m4输入的样子。 (我只能通过警告让m4 -P吃掉那个文件。)

通常情况下,这一切都在幕后进行,并且是不可见的。你好像在Windows上,在dos box shell中。我猜你有一个真正的bash控制台,可能是通过Cygwin,我建议在完整的gnu环境中重试bison命令。它可能没有那么麻烦。 Windows在使用流模拟标准输出方面特别差,谁知道可能发生了什么。

如果这没有直接帮助,至少为我们提供有关您的环境的更多信息,请描述如何构建或以其他方式安装bison,并且可能粘贴您正在使用的命令行。