gpt4 book ai didi

c++ - Bison Flex 链接问题

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:14 24 4
gpt4 key购买 nike

bisonflex 上运行着一个解析器。使用 cmake 构建和制作整个项目。

因此,我从 flex 文件创建了 lexer.cpp 文件,并从 bison 文件创建了 parser.cppparser.hpp。代码如下所示:

词法分析器.flex :

%{
#include "structures/RedirectionExpr.h"
// and about 8 includes like the upper one
#include <iostream>
#include <bits/stdc++.h>
#include "parcer.hpp"

using namespace std;
%}

%option noyywrap
%option c++

%%
/* Some staff */
%%

解析器.ypp :

%{
#include "structures/RedirectionExpr.h"
// and about 8 includes like the upper one, like in lexer.flex

#include <bits/stdc++.h>
#include <iostream>

extern "C" int yylex(void);
extern "C" int yyparse();
extern "C" int errors;
void yyerror (char const *s);
using namespace std;
%}
%union {
/* Union types. */
}

// %token definitions
// %type definitions for grammar

%%
/* grammar is here */
%%

void yyerror (char const *s) { /* Some code here */ }

int main(int argc, char *argv[])
{
do {
yyparse();
} while (true);
return 0;
}

在编译之前,我从 .flex.ypp 文件手动创建 cpp 文件:

flex -o lexer.cpp lexer.flex

bison -d -o parser.cpp parser.ypp

为了构建所有这些困惑,我使用 cmake:

CMakeLists.txt

cmake_minimum_required(VERSION 3.10)
project(parse)
set(CMAKE_CXX_STANDARD 14)
add_executable(parse
src/structures/RedirectionExpr.cpp
# other includes of classes used
src/lexer.cpp
src/parser.cpp src/parser.hpp
)

所以,问题出现了,链接的时候:

/usr/sbin/ld: CMakeFiles/parse.dir/src/parser.cpp.o: in function `yyparse':
parser.cpp:(.text+0x31a): undefined reference to `yylex'
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/parse.dir/build.make:294: parse] Error 1
make[1]: *** [CMakeFiles/Makefile2:76: CMakeFiles/parse.dir/all] Error 2
make: *** [Makefile:84: all] Error 2

作为解决方案,我尝试添加 %noyywrap 选项,在包含其他类之后将 parser.hpp 包含到 .flex 文件中,将 extern "C"int yylex(void); 行放入 parser.ypp 等。但现在我不知道如何修复它。你能帮我吗?

更新

我通过删除 extern "C" 并将 int yylex(void); 部分留在 parser.ypp 文件中解决了这个问题。您可以阅读更多相关信息 here .

最佳答案

在我看来,您打算使用 C 词法分析器 API。毕竟,在你的解析器中你说

extern "C" int yylex(void);

所以你在 flex 文件中使用 %option c++ 有点令人费解。如果这样做,您将获得 C++ 接口(interface),其中不包含“C”yylex()

我认为您的简单选择是删除 %option 并将 yylex 的声明更改为 just

int yylex();

没有 extern "C"

如果您真的想使用 C++ 接口(interface),我相信 Bison 手册包含一个使用 C++ flex 词法分析器的示例。这是更多的工作,但我相信它会得到返回。

此外,我不是 CMake 用户,但我很确定 CMake 确实知道如何编译 flex/bison 项目(参见,例如,this answer)。它可能会被 C++ 接口(interface)弄糊涂,但看起来很容易进行传统的 C 构建。

关于c++ - Bison Flex 链接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59503920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com