Mixed language C/C++ project #2760
Replies: 3 comments
-
As a primarily firmware engineer who uses Python for test bench this would solve a lot of issues having to reimplement functionality for test generation/verification. With the idea: TB from Python to mojo Link c objects to test bench Possibly even just having progressive syntax to do vectorization reasonably I could see some library functions implemented just to accelerate that part of the code. |
Beta Was this translation helpful? Give feedback.
-
Hello @IgorDeepakM , @billybrickner , @david-ragazzi Check out the
There is a broad talk on mojo, with questions/answers at the end of the meeting.
There are also stdlib directions about what need to be done to bring mojo and python closer. I think you'll find exciting answers in this |
Beta Was this translation helpful? Give feedback.
-
I'm trying to find information how to create a mixed language project with Mojo. Mixing with Python is already possible but how about C/C++? I have a code base based on C/C++ and I would like to investigate the possibilities to partially use Mojo in this project.
Currently the tool "mojo build project" only seems to support building the target executable directly (not seeing the intermediate steps). In a mixed language project you would like to compile the Mojo code to object files so that a separate linker step can link the C/C++/Mojo object files together.
Beta Was this translation helpful? Give feedback.
All reactions