gpt4 book ai didi

parsing - M4 "No such file or directory".Bison

转载 作者:行者123 更新时间:2023-12-03 10:12:17 26 4
gpt4 key购买 nike

这是我在文件 skener.y 中的代码

 %{
#include <stdio.h>
%}
%token T_Int
%%

exp: T_Int { $$ = $1; }
| exp exp '+' { $$ = $1 + $2; }
| exp exp '-' { $$ = $1 - $2; }
| exp exp '*' { $$ = $1 * $2; }
| exp exp '/' { $$ = $1 / $2; }

;
%%

当我用命令“bison -d skener.y”编译它时,我收到错误“m4:没有这样的文件或目录。”。当然,在提示符下键入命令时,我位于工作文件夹中。我不知道是关于什么的?

最佳答案

bison.exe 文件中似乎有一些错误。
我用在这个 zip 文件中找到的那个替换了它。
http://marin.jb.free.fr/bison/bison-2.4.1-modified.zip

来源:http://marin.jb.free.fr/bison/

关于parsing - M4 "No such file or directory".Bison,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16442556/

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