- 论坛徽章:
- 3
|
在linux下 用 flex生成的c程序 gcc编译不了?是怎么回事
test1.l: 在函数‘yylex’中:
test1.l:11:6: 错误:expected ‘;’ before ‘}’ token
^
lex.yy.c:895:12: 错误:函数‘yy_get_next_buffer’存储类无效
static int yy_get_next_buffer (void)
^
lex.yy.c:1029:26: 错误:函数‘yy_get_previous_state’存储类无效
static yy_state_type yy_get_previous_state (void)
^
lex.yy.c:1061:26: 错误:函数‘yy_try_NUL_trans’存储类无效
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
^
lex.yy.c:1084:17: 错误:函数‘yyunput’存储类无效
static void yyunput (int c, register char * yy_bp )
^
lex.yy.c:1125:16: 错误:函数‘input’存储类无效
static int input (void)
^
lex.yy.c:1248:13: 错误:函数‘yy_load_buffer_state’存储类无效
static void yy_load_buffer_state (void)
^
lex.yy.c:1309:17: 错误:函数‘yy_init_buffer’存储类无效
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
^
lex.yy.c:1415:13: 错误:函数‘yyensure_buffer_stack’存储类无效
static void yyensure_buffer_stack (void)
^
lex.yy.c:1548:13: 错误:函数‘yy_fatal_error’存储类无效
static void yy_fatal_error (yyconst char* msg )
^
lex.yy.c:1651:12: 错误:函数‘yy_init_globals’存储类无效
static int yy_init_globals (void)
^
test1.l:16:1: 错误:expected ‘;’ before ‘{’ token
was |
^
test1.l:18:1: 错误:expected declaration or statement at end of input
being |
^
test1.l: 在文件作用域:
lex.yy.c:295:13: 警告:‘yyensure_buffer_stack’使用过但从未定义 [默认启用]
static void yyensure_buffer_stack (void );
^
lex.yy.c:296:13: 警告:‘yy_load_buffer_state’使用过但从未定义 [默认启用]
static void yy_load_buffer_state (void );
^
lex.yy.c:297:13: 警告:‘yy_init_buffer’使用过但从未定义 [默认启用]
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
^
lex.yy.c:348:22: 警告:‘yy_get_previous_state’使用过但从未定义 [默认启用]
static yy_state_type yy_get_previous_state (void );
^
lex.yy.c:349:22: 警告:‘yy_try_NUL_trans’使用过但从未定义 [默认启用]
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
^
lex.yy.c:350:12: 警告:‘yy_get_next_buffer’使用过但从未定义 [默认启用]
static int yy_get_next_buffer (void );
^
lex.yy.c:351:13: 警告:‘yy_fatal_error’使用过但从未定义 [默认启用]
static void yy_fatal_error (yyconst char msg[] );
flex程序就是 lex与yacc上的第二个源程序 |
|