When I try to print my line number in my yyerror function, I get an error. I'm working on OSX.
(line number in compiler.l)
%{
#include "compiler.tab.h"
int lineNumber = 1;
%}
%%
int { return INT; }
float { return FLOAT; }
void { return VOID; }
do { return DO; }
while { return WHILE; }
if { return IF; }
return { return RETURN; }
else { return ELSE; }
\/\/(.)* { return COMMENT; }
\/\*(.)*\*\/ { return COMMENT; }
[a-zA-Z][a-zA-Z0-9_]* { return IDENT; }
[0-9]+\.[0-9]+ { sscanf(yytext, "%lf", &yylval.reell); return FVAL; }
[0-9]+ { yylval.integer = atoi(yytext); return IVAL; }
\( { return OPA; }
\) { return CPA; }
\{ { return OB; }
\} { return CP; }
\; { return SEMICOLON; }
\, { return COMMA; }
\! { return NOT; }
\-\- { return DECREMENT; }
\+\+ { return INCREMENT; }
\<\< { return LSHIFT; }
\=\= { return EQUALS; }
\<\= { return LTOE; }
\>\= { return GTOE; }
\&\& { return AND; }
\|\| { return OR; }
\= { return ASSIGNMENT; }
\< { return LT; }
\> { return GT; }
\/ { return DIVIDE; }
\* { return MULTIPLY; }
\+ { return PLUS; }
\- { return MINUS; }
[ ]+ { return BLNK; }
[\n]* { ++lineNumber; return NL; }
%%
compiler.c
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "compiler.h"
extern int lineNumber;
int main (void)
{
yyparse();
return 0;
}
void yyerror(char * str)
{
fprintf(stderr, "Error: %s, Line %d\n", str, lineNumber);
}
I get the following error message:
Undefined symbols for architecture x86_64: "_lineNumber", referenced from: _yyerror in compiler.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status
This is the command (shell file) I use to compile:
#!/bin/bash
flex compiler.l
bison -d compiler.y
gcc -g -c compiler.tab.c -o compiler_y.o
gcc -g -Wall -std=c99 -c lex.yy.c
gcc -g -c compiler.tab.c -o compiler_y.o
gcc -g -Wall -std=c99 -c compiler.c
gcc -g -o compiler compiler.o compiler_y.o lex.yy.o -lm -lfl
.l
file did you put that line? It seems like you're not defining it as an external symbol (or, if you are, you're not including the compiled lexer in your executable). – rici