-
Notifications
You must be signed in to change notification settings - Fork 17
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
An example WASI wrapper based on Rust std #34
Conversation
Sorry for the delay in noticing. Thank you for the PR! I will review it soon. |
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.
How about separating directories by languages? Like this:
wasi-wrapper/
├── c
└── rust
a914da5
to
91302d7
Compare
It seems
|
examples/wasi-wrapper/rust/build.rs
Outdated
Command::new("wasker") | ||
.args([ | ||
"-o", | ||
path_to_str(wasm_path.join(&target_obj_name).as_path()), |
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.
At this point, current dir is wasm_path(../../rust)
, so it might not be necessary to join the wasm_path
.
Sorry. My incomplete cleanup of the space resulted in a misleading compilation success. |
Thank you very much! |
Thank you very much for your contribution ❤️ @fgh1999 |
Convert the Linux WASI wrapper example into Rust.