awatto
awatto

Reputation: 219

How to use Bison (Yacc) to produce 64bit parser in C++?

Can anyone shed some light on this? From Bison's documentation, I didn't see anything related to this topic. Thanks very much in advance. Mark

Upvotes: 1

Views: 1205

Answers (1)

Karel Petranek
Karel Petranek

Reputation: 15164

Bison and Yacc produce a C/C++ code, it depends on your compiler settings what assembly (32/64bit) will be produced.

Upvotes: 4

Related Questions