I am new to C and GCC. I am following Tensorflow in C and I have build it successfully.
For reference, below is my GCC command
gcc.exe -Iinclude -Llib test.c -ltensorflow -o test.exe
However, when I run the exe, I am getting an error saying
tensorflow.dll is missing
and if I copy the tensorflow.dll
on the same location as the test.exe
it works. Is it possible to make this exe independent of the library? In other words, I want to share only the exe with others and not the library.