-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
examples/python: Link against c-archive? #4
Comments
My guess was that we needed to use |
Then this happens:
I think the problem might be that cffi runs the compile with |
Mmm… and if you run the compile "by hand" without |
Hmm will need to strace the command and try it. Though reading up more, getting the sense c-shared mode should be sufficient if/when #6 is done. |
We got our example working with
go build -buildmode=c-shared
but haven't been able to get it working with the file produced bygo build -buildmode=c-archive
. Would be nice to link against the same thing from both the C and Python examples.Or at least figure out why it's not working.
The text was updated successfully, but these errors were encountered: