You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everything I know about cmake is what you've provided in the cmake readme, so my apologies in advance if this is an easy one.
On Ubuntu 24.04 server, 64 bit ARM architecture, I can successfully build the HiGHS project as instructed. When I try to install with cmake --install build from the parent HiGHS dir, I get a No such file or directory error for the following files:
libhighs.so.1.7.2
libhighs.so.1
libhighs.so
highs (executable)
I found these files not in the directories cmake was looking in, but in nearby dirs.
The .so files were being searched for by cmake in HiGHS/build/src/CMakeFiles/CMakeRelink.dir, but I found them in HiGHS/build/lib.
The highs executable was expected in HiGHS/build/app/CMakeFiles/CMakeRelink.dir, but found in HiGHS/build/bin.
After copying these files into the expected locations, it looks like I have a flawless install. Am I doing something wrong somewhere in the build/install process?
Additionally, I do not have these problems with the same Ubuntu 24.04 server on x86; that build and install process goes exactly as stated in the readme. I have, however, seen similar lost file behavior on AWS Linux 2023 (x86), which is a derivative of Fedora (I do not know if similar problems exist for those flavors of Linux).
Thank you very much for any insight you can provide!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Team,
Everything I know about cmake is what you've provided in the cmake readme, so my apologies in advance if this is an easy one.
On Ubuntu 24.04 server, 64 bit ARM architecture, I can successfully build the HiGHS project as instructed. When I try to install with
cmake --install build
from the parent HiGHS dir, I get aNo such file or directory
error for the following files:I found these files not in the directories cmake was looking in, but in nearby dirs.
After copying these files into the expected locations, it looks like I have a flawless install. Am I doing something wrong somewhere in the build/install process?
Additionally, I do not have these problems with the same Ubuntu 24.04 server on x86; that build and install process goes exactly as stated in the readme. I have, however, seen similar lost file behavior on AWS Linux 2023 (x86), which is a derivative of Fedora (I do not know if similar problems exist for those flavors of Linux).
Thank you very much for any insight you can provide!
Beta Was this translation helpful? Give feedback.
All reactions