We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When compiling using cuda-enabled OpenCV, I get the following:
/usr/bin/ld: cannot find -lcufft /usr/bin/ld: cannot find -lnpps /usr/bin/ld: cannot find -lnppi /usr/bin/ld: cannot find -lnppc
I solved this on my own machine by adding this at line 18 to CMakeLists.txt:
link_directories(/usr/local/cuda-7.0/lib64)
Ideally, the CMakeLists.txt file should deal with this automatically by detecting if CUDA is enabled and linking against it if it is.
CMakeLists.txt
The text was updated successfully, but these errors were encountered:
I also encountered the same problem, but i do not know how to solve?
Sorry, something went wrong.
No branches or pull requests
When compiling using cuda-enabled OpenCV, I get the following:
I solved this on my own machine by adding this at line 18 to CMakeLists.txt:
Ideally, the
CMakeLists.txt
file should deal with this automatically by detecting if CUDA is enabled and linking against it if it is.The text was updated successfully, but these errors were encountered: