Replies: 20 comments 1 reply
-
Should look something like this: -DRV_DEPS_QT5_LOCATION=/opt/Qt/5.15.2/gcc_64/ |
Beta Was this translation helpful? Give feedback.
-
There's also a |
Beta Was this translation helpful? Give feedback.
-
@la0011 CMake Error at /usr/local/share/cmake-3.25/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find OpenCL (missing: OpenCL_LIBRARY OpenCL_INCLUDE_DIR)
Call Stack (most recent call first):
/usr/local/share/cmake-3.25/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)
/usr/local/share/cmake-3.25/Modules/FindOpenCL.cmake:163 (find_package_handle_standard_args)
src/lib/ip/IPCore/CMakeLists.txt:255 (FIND_PACKAGE) both ocl-icd and opencl-headers seem to be installed @rogernelson source rvcmds.sh |
Beta Was this translation helpful? Give feedback.
-
Hi @NicTanghe. Yes, once you've done For the openCL error, have you installed the openCL headers? If you have a look at this section of the documentation, it gives a yum command that should install them (and other build dependencies). |
Beta Was this translation helpful? Give feedback.
-
I was stuck in the same place, got past it by additionally installing |
Beta Was this translation helpful? Give feedback.
-
THx that fixed those. Now its all the glu ones. (desc top) |
Beta Was this translation helpful? Give feedback.
-
Hi @NicTanghe Do you have the file |
Beta Was this translation helpful? Give feedback.
-
but i dont use mesa drivers? also the mesa-libGLU package was already installed but
returns doesn't exist searching in nautilus |
Beta Was this translation helpful? Give feedback.
-
If you already have libGLU, then great. Normally the setup is to link libLGU.so to libGLU.so.1 (which maybe be linked to something else). That is normally done at installation, but if not you could try just creating the symlink yourself.
You'll also need the headers, do you have |
Beta Was this translation helpful? Give feedback.
-
I linked the files, Didn’t find the headers. Now CMake throws me errors about open ssl and i also can`t make heads or tails of them. |
Beta Was this translation helpful? Give feedback.
-
try installing also, in case you haven't already I also had to install
along the way. |
Beta Was this translation helpful? Give feedback.
-
I was only missing perl-FindBin That seems to have fixed things, it seems to be compiling now. I will close the ticket if it finishes compiling, if not I’ll be Arnold. How did u figure out those dependencies ? |
Beta Was this translation helpful? Give feedback.
-
import _tkinter # If this fails your Python may not be configured for Tk installing python3-tkinter and running import tkinter
tkinter._test() in python solved nothing i also needed to install next i installed sqlite-devel Now im here
|
Beta Was this translation helpful? Give feedback.
-
compile... look for errors (usually linker missing an .so)... search on pkgs.org which package contains the missing file... install missing package ... repeat also I was running in a docker so I started quite minimal already and had to install almost everything |
Beta Was this translation helpful? Give feedback.
-
(i ws hoping you had some magic less labour intensive way) [ 8%] Building CXX object src/lib/base/TwkUtil/CMakeFiles/TwkUtil.dir/SystemInfo.cpp.o I have kernel-headers and kernel-cross-headers Maybe if removing dont work try in future. next missing is libaio.h |
Beta Was this translation helpful? Give feedback.
-
remove that line |
Beta Was this translation helpful? Give feedback.
-
Next error i get is.
I’m hesitant to replace ucontext with Context because those seem like totally different functions. |
Beta Was this translation helpful? Give feedback.
-
there's a proposed PR that fixes that. just rename also check this issue, for future code issues, they all apply to EL9 as well: |
Beta Was this translation helpful? Give feedback.
-
I will make a nice markdown file tomorrow or next week. |
Beta Was this translation helpful? Give feedback.
-
Hi all, I was just able to install OpenRV on a fresh Rocky 9.1 machine, so I make a new markdown with my steps. This thread was also very helpful, so thanks to all of you. Hopefully this helps people out in the future: |
Beta Was this translation helpful? Give feedback.
-
If annyone knows how to fix this and has spare time.
Followed build instructions on RHEL9.
installed Qt5 from qt.io's installer.
got stuck at the Configure step.
Log
This was fixed by using
-DRV_DEPS_QT5_LOCATION=/opt/Qt/5.15.2/gcc_64/
The Error I got after that one is about open Cl.
both ocl-icd and opencl-headers seem to be installed.
Log
Next I`m getting these conserning GLU.
both libglvnd and libglvnd-devel are installed.
and i think the mesa ones dont make sence with nvidia drivers ?
Log
Fixed by running
Then I tried running CMAKE and ran into the following issues.
openssl-devel is installed
Log
The Meson build system (these only appeared the first time I ran and now don’t appear anymore.
RV_DEPS_OPENSSL
No module named '_tkinter'
fixed by
next.
then there ws an error about sys/sysctl.h that was missing wich is depricated. c #20
Log
Fixed by removing the lines from the code at
~/git/OpenRV/src/lib/base/TwkUtil/SystemInfo.cpp.o
next libio missing
sudo dnf install readline-devel
Beta Was this translation helpful? Give feedback.
All reactions