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
I just did a "fresh install" of GoLearn for a project I am working on and noticed that it breaks under Go 1.6 with the following errors:
You can reproduce by running the tests for the project on a machine with Go 1.6 installed.
This has to do with these new restrictions for cgo , introduced in Go 1.6. Other projects have noticed this breaking cgo stuff as well.
Does anyone feel like digging into this? It seems BLAS dependency has spread across the code base since I touched it last.... 😢
The text was updated successfully, but these errors were encountered:
I reproduced same problem in using LinearSVC. I temporize with export GODEBUG=cgocheck=0
export GODEBUG=cgocheck=0
Sorry, something went wrong.
Travis: drop support for go 1.3
71c761e
Fixes sjwhitworth#133 and sjwhitworth#134, temporary workaround for sjwhitworth#129 so we can continue testing.
No branches or pull requests
I just did a "fresh install" of GoLearn for a project I am working on and noticed that it breaks under Go 1.6 with the following errors:
Line 17: - runtime error: cgo argument has Go pointer to Go pointer
Line 40: - runtime error: cgo argument has Go pointer to Go pointer
Line 21: - runtime error: cgo argument has Go pointer to Go pointer
Line 29: - runtime error: cgo argument has Go pointer to Go pointer
You can reproduce by running the tests for the project on a machine with Go 1.6 installed.
This has to do with these new restrictions for cgo , introduced in Go 1.6. Other projects have noticed this breaking cgo stuff as well.
Does anyone feel like digging into this? It seems BLAS dependency has spread across the code base since I touched it last.... 😢
The text was updated successfully, but these errors were encountered: