I have actually managed to get round my problem! Ideally the Rjags installation manual explained all needed to know. However, i just mention how i sorted myself, just incase may help anyone later on. So managed to get lapack-devel, lapack, blas-devel and blas into my home dir. Copied the libraries liblapack.so.3 liblapack.so.3.2 and liblapack.so.3.2.4 (and the blas counterparts) to the directory containing liblapack.so (or libblas.so as appropriate). I then install JAGS to my preferred location LDFLAGS="-L/path/to/blas/usr/lib64...
Prior to installing JAGS, i have installed Lapack and BLAS (Note- i recompiled BLAS and LAPACK libraries with -fPIC instruction). I install JAGS in my local directory using the code LDFLAGS="-L/mnt/nfs/home/b9047707/software/BLAS-3.8.0 -L/mnt/nfs/home/b9047707/software/lapack-3.9.0" ./configure --with-blas=-lblas --with-lapack=-llapack --prefix=$JAGS_HOME --libdir="/mnt/nfs/home/b9047707/software/jags/lib64" and it seems to compile just fine.(JAGS_HOME is my home directory in this case). So i proceed...
Hello I am getting the following error when trying to install rjags in on a linux server after installing JAGS (4.3.0) error: unable to load shared object '/mnt/nfs/home/b9047707/software/rjags/00LOCK-rjags/00new/rjags/libs/rjags.so': /mnt/nfs/home/b9047707/software/rjags/00LOCK-rjags/00new/rjags/libs/rjags.so: undefined symbol: _ZNK4jags6SArray12getSDimNamesB5cxx11Ej Here's my thought process untill i arrived at my problem: First, I dont have root access priviledges so i am trying to build this...