Comment on Tool for instantiating a C++ template at runtime?
OmnipotentEntity@beehaw.org 8 months ago
This doesn’t specifically use the template metaprogramming interface for C++, but seems to do what you want regardless. github.com/jmmartinez/easy-just-in-time
I’ve never used the library myself though.
liori@lemm.ee 8 months ago
I somehow didn’t think a regular JIT solution might be applicable here, but it is. Thank you! There seems to be a number of projects doing JIT for C++, will look at them.