1

我正在尝试使用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

此致。

4

1 回答 1

1

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

通常,这一切都在幕后运行并且是不可见的。您似乎在 Windows 上,并且在 dos 框外壳中。我猜你在某个地方有一个真正的 bash 控制台,可能是通过 Cygwin,我建议在完整的 gnu 环境中重试 bison 命令。它可能有更少的麻烦。Windows 在用流模拟标准输出方面特别差,谁知道会发生什么。

如果这没有直接帮助,至少向我们提供有关您的环境的更多信息,请描述野牛是如何构建或安装的,并可能粘贴您正在使用的命令行。

于 2009-10-12T00:34:23.757 回答