Hi,
I am calling a C function, compiled with gcc -shared -fPIC as it should be. Until then, no problem; however, if I modify and compile the C code again, the changes won’t appear in Julia. I tested this by going in the REPL and:
- defining and calling the function
f_awhich contains accallto the.sofile; - removing the
.sofile; - defining and calling a second function
f_bwith the same call to the.sofile.
Do I have to restart the Julia kernel to take the modifications into account?