Hello everybody,
I am currently working on the development of a MCU architecture that is based on the
CV32E40P core. In the process, we are simulating example applications using the QuestaSim simulator.
At the moment, we are trying to simulate a simple Tensorflow-Lite Micro inference program on the system. For that, I would like to compile TFLM as a
static library, in order to link it to the object of the inference program and create an ELF executable. The ELF will be read during the simulation and provide the inputs to the system.
The question is, how do I compile TFLM as a static library? Online I found some
instructions on how to compile TFLM as a shared library, but a shared library would make our task too complicated.
Cheers!
Joan