I am working with a large CMake project, and trying to debug why an rpath in a shared library is not getting set at all. Digging through the verbose output, the build command can be found to be:
/usr/bin/c++ -fPIC -DVERSION_INFO=\"0.0.1\" -fPIC -std=c++14 \
-fopenmp -Wall -Wextra -O2 -DNDEBUG -Wl,-rpath \
-Wl,/usr/lib/openmpi/lib -Wl,--enable-new-dtags -shared \
-Wl,-soname,libScannerBitCAPI.so.1 \
-o ../../../../../lib.linux-x86_64-3.6/pyscannerbit/libScannerBitCAPI.so. \
CMakeFiles/ScannerBitCAPI.dir/ScannerBit/examples/ScannerBit_CAPI.cpp.o \
<tonnes more object files> \
/usr/lib/openmpi/lib/libmpi_cxx.so /usr/lib/openmpi/lib/libmpi.so \
/usr/lib/openmpi/lib/libmpi.so -ldl -lgsl -lgslcblas -lm \
/home/farmer/anaconda3/envs/general/lib/libhdf5.so -lrt -lpthread \
/home/farmer/anaconda3/envs/general/lib/libz.so -ldl -lm \
/home/farmer/anaconda3/envs/general/lib/libpython3.6m.so \
../../../../../lib.linux-x86_64-3.6/pyscannerbit/libyaml-cpp.so.0.6.2 \
-lgsl -lgslcblas /home/farmer/anaconda3/envs/general/lib/libhdf5.so \
-lrt -lpthread /home/farmer/anaconda3/envs/general/lib/libz.so \
/home/farmer/anaconda3/envs/general/lib/libpython3.6m.so \
-Wl,-rpath,/home/farmer/anaconda3/envs/general/lib/python3.6/site-packages/pyscannerbit:/usr/lib/openmpi/lib:/home/farmer/anaconda3/envs/general/lib \
Now, the thing that stands out to me here is that the -rpath command appears twice, and the first one is empty. That seems pretty suspicious.
But before I go trying to chase down how those flags end up there, I wanted to check; is that actually how the compiler (gcc in this case) will interpret these flags? In the event of multiple occurences of -rpath, are all except the first ignored? My interpretation of the manual is no, that isn't how it works:
-rpath=dir
Add a directory to the runtime library search path. This is used when linking an ELF executable with shared objects. All
-rpath arguments are concatenated and passed to the runtime linker, which uses them to locate shared objects at runtime.
This seems to suggest that you can add many -rpaths by using the flag multiple times.
So what else could be wrong? Why doesn't this command result in any rpaths getting set in my libScannerBitCAPI.so
shared library?