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_a
which contains accall
to the.so
file; - removing the
.so
file; - defining and calling a second function
f_b
with the same call to the.so
file.
Do I have to restart the Julia kernel to take the modifications into account?