%{
#include <stdio.h>
#include <stdarg.h>
#include <iostream>
#include <ostream>
#include <string>
#ifndef TDM_PIN_MAP_TEST
#include <tdmPinMap.h>
namespace dc {
class tdmPinMap;
}
#endif
#undef YYLMAX
#define YYLMAX 100000
extern int lineno;
extern "C" int yywrap();
#ifndef TDM_PIN_MAP_TEST
int yyerror(dc::tdmPinMap &pm,std::string msg);
#else
int yyerror(std::string msg);
#endif
extern "C" char yytext[];
extern "C" int yylex();
%}
#ifndef TDM_PIN_MAP_TEST
%parse-param {dc::tdmPinMap &pm}
#endif
%union
{
int val;
char *str;
}
%token EQUALS
%token COMMA
%token SEMICOLON
%token PACKAGE
%token PIN
%token PORT
%token <str> ALPHANUMERIC
%type <str> port_name
%type <str> pin_name
%type <str> package_name
%%
;
pin_name : ALPHANUMERIC
{
$$ = $1;
}
;
%%
#ifndef TDM_PIN_MAP_TEST
int yyerror(dc::tdmPinMap &pm,std::string msg)
#else
int yyerror(std::string msg)
#endif
{
return 1;
}
我的问题:
下面的代码出现无效字符错误。
#ifndef TDM_PIN_MAP_TEST
%parse-param {dc::tdmPinMap &pm}
#endif
在这里,我只想在未定义parse-param
宏TDM_PIN_MAP_TEST
的情况下定义,但出现以下错误。
bison -d -v -d pinMap.ypp
pinMap.ypp:28.1: invalid character: `#'
pinMap.ypp:28.2-7: syntax error, unexpected identifier
make: *** [pinmap_yacc.cpp] Error 1
行号28
是指我上面指出的代码。
感谢任何解决上述错误的指针。