-
Hi, I'm trying to install neper on to the HPC of our university. When it comes to "make install", I got the following error:
I checked the neper file being generated in /src/bin/, and it's read and executable only. The neper manual says to install Neper as root, but I'm not a SU of our HPC. Please note that Is there a way to solve this? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Ok. So I have found a solution, and I thought I'd share it here in case anyone in the future also looking to have Neper installed on a cluster.
My understanding is that cmake is trying to change the RPATH to scotch and nlopt (I was using the built-in versions) to an empty directory. Judging from the The solution is simple enough - just comment out where RPATH is being changed, like so:
Et voilà! Disclaimer: I'm not by any means someone who knows about software compiling. All these are concluded from my search & experimenting. There might be obvious mistakes but it worked for me, and I certainly hope it'll help others in the same situation. Cheers, |
Beta Was this translation helpful? Give feedback.
Ok. So I have found a solution, and I thought I'd share it here in case anyone in the future also looking to have Neper installed on a cluster.
The error is caused by RPATH_CHANGE trying to change the original RPATH to a new one, which is an empty one. When I looked at cmake_install.cmake in
neper/src/build/
, I found the following:My understan…