Calling Julia program from C and avoiding recompiling

Hi!

I am planning on calling my Julia programs from my C script where the calling will have to be done many times. However, I am worried about whether this will mean having to recompile the functions all the time as if the Julia code was ran for the first time every time.

Does someone know whether this in inevitable or have any tips on avoiding it?

thanks in advance.

It isn’t clear what you’re doing in C: are you starting a Julia process each time (which isn’t a great idea given the startup cost), or are you embedding Julia in your application which wouldn’t have any repeated re-compilation for the same code, within the same session?

I am calling a julia program which contains functions written in julia and which I want to use. Embedding in Julia seems like it only works to use julia commands but I actually want to call a julia program that returns a number after some input from the C code.