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
Newer versions of goyacc try to optimize the representation of certain things. If using the latest goyacc, one of the generated files will be updated to use thinner ints which breaks the build like so:
$ go generate ./... processing libvirt.yml done.
# github.com/digitalocean/go-libvirt/internal/lvgen./lvlexer.go:75:12: cannot use yyTok2[tokType - yyPrivate] (type int8) as type int in assignmentinternal/lvgen/lv-gen.go:29: running "go": exit status 2
For now, I've installed goyacc@c6776771dde7a49828feb54fd8be11695a32b558 for local development.
Newer versions of
goyacc
try to optimize the representation of certain things. If using the latestgoyacc
, one of the generated files will be updated to use thinner ints which breaks the build like so:For now, I've installed
goyacc@c6776771dde7a49828feb54fd8be11695a32b558
for local development.goyacc
seems to perform this optimization since commit 59f1f2c5a8fd844a6cc55e9a773a7003bd8e5480.edit: the following components could be addressed:
The text was updated successfully, but these errors were encountered: