0

I'm attempting to run a program (openGraphiti), and am running into some errors I can't seem to get past.

Here is my full make error, but the relevant part is

No rule to make target `/usr/lib/x86_64-linux-gnu/libOpenCL.so

I've compiled this same program on a different machine, so I know the problem is on my end, and not in the makefile. I know OpenCL is installed correctly, because it passes it the cmake .

Does anyone know what could be causing this error?

Edon
  • 211

1 Answers1

0

this is how I fixed this. Turns out the nvidia drivers were not working for whatever reason.

sudo apt-get remove --purge nvidia -*

then reinstall

sudo apt-get install nvidia-331 nvidia-331-uvm nvidia-opencl-dev nvidia-modprobe
Edon
  • 211