You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.
I have a *.y file to generate a parser for sql, but I found there was different output between MacOS(10.13) and Linux(CentOS 6.3).
Ant the output parser from MacOS not working good. I had to generate the parser on linux and send the parser file to mac to continue my work.
There are lost of different between to parser.
I use the command like this:
goyacc -o sql.go sql.y
gofmt -w sql.go
The text was updated successfully, but these errors were encountered:
It seems you have not performed the commands in #28 (comment), becacuse the sql.go.linux file was definitely not produced by github.com/cznic/goyacc. It is probably produced by golang.org/x/tools/cmd/goyacc instead.
ops... It's all my fault. golang.org/x/tools/cmd/goyacc working good.
but .. github.com/cznic/goyacc is not working well with my project.
so thanks for your time. : )
I have a *.y file to generate a parser for sql, but I found there was different output between MacOS(10.13) and Linux(CentOS 6.3).
Ant the output parser from MacOS not working good. I had to generate the parser on linux and send the parser file to mac to continue my work.
There are lost of different between to parser.
I use the command like this:
The text was updated successfully, but these errors were encountered: