0
how can I compile parse.y file to generate a 64 bit parse.tab.c file. 

I want to create a 64 bit c++ type parser with bison and lex 


-I have a parse.y file
-I compile it to genrate a parse.tab.cpp file
-I renamed it to parse.cpp and included it in my project
-I migrated this project to 64 bit

我是否需要使用 64 位野牛 exe 单独编译此 parse.y 文件,然后将其包含在我的 64 位迁移项目中,否则应用程序将在不使用 64 位野牛 exe 单独编译此 parse.y 文件的情况下工作文件

4

2 回答 2

1

使用 gcc,您可以使用 -m32 或 -m64 选项在 x86 或 x64 位代码中交替编译

于 2013-07-10T13:41:51.803 回答
0

为什么您认为生成的代码中会有 32/64 问题?只需编译输出,它就可以工作。

于 2013-07-09T11:58:57.827 回答