當我試圖用做關鍵字它給我的錯誤編譯:文件法過早結束
premature end of file in lex.l file in line no 17.
%option noyywrap
%{
#include "grammer.tab.h"
%}
name ([0-9])
whitespace [ \r\t\v\f]
linefeed \n
%%
{name} { return NAME; }
":" { return COLON; }
"->" { return RIGHT_ARROW; }
"{" { return LEFT_BRACE;}
"}" { return RIGHT_BRACE;}
";" { return SEMICOLON;}
{whitespace}
{linefeed} ++yylineno;
%%
所以有人好心幫我。
錯誤: -
尾巴: - enter image description here
這個文件是什麼樣子的? –
當我編譯make文件時出現這個錯誤 –
是的,是的。但是說你有一個錯誤,並要求修復它不適合堆棧溢出。如果你可以提供錯誤或Makefile,這將會更有用。 –