We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Building the Kaiju editor for rev eb5ac72 of Kaiju gives the following error:
kaiju/editor/codegen # kaiju/editor/codegen editor/codegen/runtime_type.go:57:7: undefined: gob.UnRegisterName editor/codegen/runtime_type.go:58:7: undefined: gob.RegisterNamedType
To Reproduce Steps to reproduce the behavior:
src
/path/to/kaiju-go/bin/go build -tags editor -v -o kaiju_editor -ldflags="-s -w" main.go
Expected behavior Successful compile.
Platform
Additional context
The standard encoding/gob package has no exported symbols named RegisterNamedType nor UnRegisterName.
encoding/gob
The text was updated successfully, but these errors were encountered:
BrentFarris
No branches or pull requests
Describe the bug
Building the Kaiju editor for rev eb5ac72 of Kaiju gives the following error:
To Reproduce
Steps to reproduce the behavior:
src
directory and run/path/to/kaiju-go/bin/go build -tags editor -v -o kaiju_editor -ldflags="-s -w" main.go
Expected behavior
Successful compile.
Platform
Additional context
The standard
encoding/gob
package has no exported symbols named RegisterNamedType nor UnRegisterName.The text was updated successfully, but these errors were encountered: