libnvidia srcfile common.h use /usr/lib64 to map libcuda.so etc. in centos7
however in cuda official image it also use this directory /usr/lib64 to put the glibc lib.
so when I have some elf (eg. python) that is linked with higher glibc, and also I need to use the libcuda.so etc. I'd use env var LD_LIBRARY_PATH to include the libcuda.so and here I got into the glibc version conflict problem
how may I use glibc the version I want to use while I use the libcuda.so inner the container at the same time? any idea?
libnvidia srcfile
common.h
use/usr/lib64
to maplibcuda.so
etc. in centos7 however in cuda official image it also use this directory/usr/lib64
to put the glibc lib.so when I have some elf (eg. python) that is linked with higher glibc, and also I need to use the
libcuda.so
etc. I'd use env varLD_LIBRARY_PATH
to include the libcuda.so and here I got into the glibc version conflict problemhow may I use
glibc
the version I want to use while I use thelibcuda.so
inner the container at the same time? any idea?