Error: GLIBC_2.14 not found

Hello,

recently I ran a simple CUDA Programm on a Cluster(Nvidia Tesla)

Now I have another small CUDA Program, which results in the following error, executing it on the same cluster:

./test__21_structs_in_cuda_manualchanges_before_and_afteropenmpc_oncluster: 
/lib64/libc.so.6: version `GLIBC_2.14' not found (required by  
/test__21_structs_in_cuda_manualchanges_before_and_afteropenmpc_oncluster)

I compiled both programs with NSight and the project settings seem to be the same.

How can I fix the error?

Regards
sw

Hi,

I’ve solved the problem. The error source was usage of the memcpy-Funktion, which was referenced to another glibc-Version on the computer I compiled the sources. By replacing it with the memmove-Funktion it was all done!

Regards
sw