Porting WAMR to VEX V5 #3952
Unanswered
doinkythederp
asked this question in
Q&A
Replies: 1 comment
-
The threads library isn't always necessary on all platforms. You might find something useful in the CMakeLists.txt files located in the product-mini/platforms directory. The top-level CMakeLists.txt is a general example and may not be suitable for your specific case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey there! I'd like to use WAMR on the VEX V5, a single-core, bare-metal environment built on a Cortex A9. C programs are compiled with
arm-none-eabi-gcc
, and notably, the platform has no concept of threads or processes. How feasible would it be for me to port WAMR's AOT mode to this platform and embed it in existing Rust code, given that it depends on the package "Threads" in CMakeLists.txt?Beta Was this translation helpful? Give feedback.
All reactions