我正在尝试编译一个简单的计算器示例,我在互联网上找到了我的嵌入式环境,但我在使用flex / bison的依赖关系时遇到了一些困难。
我的测试文件是:
lexer.l
%{
// lexer.l From tcalc: a simple calculator program
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include "tcalc.tab.h"
extern YYSTYPE yylval;
%}
%option noyywrap
%option never-interactive
%option nounistd
delim [ \t]
whitesp {delim}+
digit [0-9]
number [-]?{digit}*[.]?{digit}+
%%
{number} { sscanf(yytext, "%lf", &yylval); return NUMBER;}
"+" { return PLUS; }
"-" { return MINUS; }
"/" { return SLASH; }
"*" { return ASTERISK; }
"(" { return LPAREN; }
")" { return RPAREN; }
"\n" { return NEWLINE; }
{whitesp} { /* No action and no return */}
tcalc.y
/* tcalc.y - a four function calculator */
%{
#define YYSTYPE double /* yyparse() stack type */
#include <stdlib.h>
%}
/* BISON Declarations */
%token NEWLINE NUMBER PLUS MINUS SLASH ASTERISK LPAREN RPAREN
/* Grammar follows */
%%
input: /* empty string */
| input line
;
line: NEWLINE
| expr NEWLINE { printf("\t%.10g\n",$1); }
;
expr: expr PLUS term { $$ = $1 + $3; }
| expr MINUS term { $$ = $1 - $3; }
| term
;
term: term ASTERISK factor { $$ = $1 * $3; }
| term SLASH factor { $$ = $1 / $3; }
| factor
;
factor: LPAREN expr RPAREN { $$ = $2; }
| NUMBER
;
%%
/*--------------------------------------------------------*/
/* Additional C code */
/* Error processor for yyparse */
#include <stdio.h>
int yyerror(char *s) /* called by yyparse on error */
{
printf("%s\n",s);
return(0);
}
/*--------------------------------------------------------*/
/* The controlling function */
#include "lex.h"
int parse(void)
{
char exp[] = "2+3\n\0\0";
yy_scan_buffer(exp, sizeof(exp));
yyparse();
exit(0);
}
当我尝试使用我的编译器编译它时,我收到有关未找到EINTR的错误。我的errno.h头文件中没有EINTR(来自我编译器的工具链)。
是否有一些选项可以让flex / bison更轻量级,更少依赖POSIX?
答案 0 :(得分:0)
简而言之:编号flex将在所有C扫描仪中引用EINTR
。所以你基本上有三个选择(按降序排列):
EINTR
?YY_INPUT
区块中定义您自己的%top
。EINTR
; 0
或INT_MAX
可能是这个特定应用程序的不错选择,但重新定义标准宏总是会产生有趣的副作用。