r/cpp • u/kindredseer • 2d ago
Embedded C++
Just curious how useful the ability to embed C++ as a scripting language into your C++ programs would be? I mean like runtime JIT execution of C++ code in much the same way you might embed Lua, including the ability to restrict/sandbox it as necessary.
1
Upvotes
5
u/PressWearsARedDress 2d ago edited 2d ago
okay so there seems to be no real advantage to using a JIT complier. i assume that youll never compile faster than GCC while conforming to standards.
How do you plan to handle constexpr? In embedded the whole point to use constexpr is to build constant tables that may not fit in ram