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
Environment:
Prerequisites:
apt install libsodium-dev libczmq-dev libzmq3-dev -y
A. Not-working command:
mkdir zmqtest go get github.com/zeromq/goczmq
Output:
# github.com/zeromq/goczmq ../go/src/github.com/zeromq/goczmq/sock_option.go:37:3: could not determine kind of name for C.zsock_set_router_notify
Compiling is failed with same message like ... C.zsock_set_router_notify
... C.zsock_set_router_notify
B. Working command:
mkdir zmqtest go mod init zmqtest go get github.com/zeromq/goczmq
go: github.com/zeromq/goczmq upgrade => v4.1.0+incompatible
go mod version successfully compiles the goczmq example code.
go mod
goczmq
But the install manual didn't tell that go mod is mandatory.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment:
Prerequisites:
A. Not-working command:
Output:
Compiling is failed with same message like
... C.zsock_set_router_notify
B. Working command:
Output:
go mod
version successfully compiles thegoczmq
example code.But the install manual didn't tell that
go mod
is mandatory.The text was updated successfully, but these errors were encountered: