-
Notifications
You must be signed in to change notification settings - Fork 824
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
Feat/wasmer wasm alt #2851
Feat/wasmer wasm alt #2851
Conversation
ad28c69
to
edfd833
Compare
Also can you rebase the branch on top of the latest master? There are a few unrelated commits in there. |
I don't think there are any API breaking changes, so it's not necessary. |
@@ -41,7 +41,6 @@ mod resolver; | |||
mod store; | |||
mod trap; | |||
mod types; | |||
mod utils; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot to delete utils.rs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not resolved: the file is still not deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh the github "Files changed" didn't show it as deleted.
Also could you rebase on top of master ( |
I alway have a conflict with the Update to wasmer 0.83:
|
…er-singlepass to use it
… pass do not depend from vm anymore)
…part, not the run part
…ween different bitness (wasm32 vs 64bits)
… separated from the Run part
…or now Removed leftover trace of compiler feature in compiler-cli Excluded the new wasmer-compiler-cli from lint test, like wasmer-cli it's based on
Removed conditionnal toml on wasm for VM as it's not builded in that configuration Added unwind to wasm build Moved Trap back to vm (from types) as it's used only on Runtime Move MemoryError back to vm (from types) as it's used on Runtime only scenario Some cleanup and lint fixes Removed wasm build case from vfs/host_fs as it's not used
ef03271
to
0c7ea79
Compare
Finaly got it. In needed to use interactive rebase to remove the strange merge I created earlier and that was incorrect. Seems clean now. |
bors r+ |
Description
Abiility to build wasmer compile engine as WebAssembly, using a new CLI program
wasmer-compiler-cli
.This is done with following steps: