How to build rusty_v8 with old v8 version?
Hello all !
I am trying to build rusty_v8 (https://github.com/denoland/rusty_v8) with an old version of v8.
I saw that there is an env var
RUSTY_V8_ARCHIVE
, so i tried to build v8 from the official repository as a static library.
I tried using this
Im getting multiple .a
and I don't know which one to use, but trying with libv8_libbase.a
throw me this error
Can you please help me compile v8 as a static library to use it with rusty_v8?
Thanks !1 Reply
I'm sorry, but the documentation does not provide a clear answer to your question about building rusty_v8 with an old version of V8. It does mention that the rusty_v8 crate provides high-quality Rust bindings to V8’s C++ API and allows users to compile V8 from scratch. However, it doesn't provide specific instructions on how to build rusty_v8 with an old version of V8.
If you're having technical issues, it might be helpful to check the build errors and ensure you have the latest main. If that doesn't work, you could try cleaning and building again using
cargo clean && cargo build -vv
.
If you're still having issues, it might be best to ask for help in the appropriate channels where the project is hosted or check if there are any open issues related to your problem. 🦕