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
Example for C embedding from the official doc site: https://docs.wasmtime.dev/examples-c-hello-world.html
With a few changes to enable the lightbeam compiler:
48c48,50 < wasm_engine_t *engine = wasm_engine_new(); --- > wasm_config_t* config = wasm_config_new(); > wasmtime_config_strategy_set(config, WASMTIME_STRATEGY_LIGHTBEAM); > wasm_engine_t *engine = wasm_engine_new_with_config(config);
Compile and run the above example, using wasmtime's main branch with lightbeam enabled.
The example runs correctly.
The compiler panics:
Initializing... Compiling module... thread '<unnamed>' panicked at 'not implemented', crates/lightbeam/wasmtime/src/lib.rs:224:9
Wasmtime version or commit: 44f9ccd
Operating system: Linux
Architecture: x86-64
The text was updated successfully, but these errors were encountered:
Lightbeam is unmaintained and has probably been broken for quite a while.
Sorry, something went wrong.
So is there any plan to fix it?
Not that I am aware of.
Lightbeam was removed in #3390 as explained in RFC 14, so I'm going to close this.
No branches or pull requests
Test Case
Example for C embedding from the official doc site: https://docs.wasmtime.dev/examples-c-hello-world.html
With a few changes to enable the lightbeam compiler:
Steps to Reproduce
Compile and run the above example, using wasmtime's main branch with lightbeam enabled.
Expected Results
The example runs correctly.
Actual Results
The compiler panics:
Versions and Environment
Wasmtime version or commit: 44f9ccd
Operating system: Linux
Architecture: x86-64
The text was updated successfully, but these errors were encountered: