When compiling a C++program which uses an external library I face
"undefined reference to
memcpy@GLIBC_2.14
" error in linking phase.
First, let me say that I have taken a look at this question and implemented the solution (the version.c file thing) and it didn't work for me.
I checked the library so file with this command:
objdump -T libVimbaCPP.so | grep -i glibc_2.14
and result was:
0000000000000000 DF *UND* 0000000000000000 GLIBC_2.14 memcpy
What are my options here?
Is there something wrong with that library because it has reference to GLIBC_2.14
?
Or do I need to change something on my side?
Thank You