Merged
Conversation
712033c to
879e78f
Compare
Member
|
@olivierlemasle thanks for opening this PR. I'll wait for @srenatus to weigh in next week. |
This version of wasmtime-go reflects new Wasmtime C API specified by [RFC 11], and requires some changes in the way it is called. Also, the imports that were present only to include the C headers and static lib in `go vendor`ed dependencies are no longer required, because these paths are now imported by wasmtime-go itself in [includebuild.go]. [RFC 11]: bytecodealliance/rfcs#11 [includebuild.go]: https://github.com/bytecodealliance/wasmtime-go/blob/2f1b8a9d0/includebuild.go#L13-L17 Signed-off-by: Olivier Lemasle <[email protected]>
fa5cbaf to
b65ef30
Compare
Contributor
|
@olivierlemasle thanks a lot for doing this, I really appreciate your help here 😃 The code changes look good to me, I'll play with it some locally and merge when nothing surprising happens 🚀 |
Contributor
|
What a pleasant surprise in benchmarks: @olivierlemasle would you have any idea why it's gotten that much faster? I'm starting to wonder if I've mismanaged my |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This version of wasmtime-go reflects new Wasmtime C API specified by Wasmtime RFC 11, and requires some changes in the way it is called.
Also, the imports that were present only to include the C headers and static lib in "
go vendored" dependencies are no longer required, because these paths are now imported by wasmtime-go itself in includebuild.go.