-
Notifications
You must be signed in to change notification settings - Fork 747
New issue
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
add opencv build without openblas dependencies #987
Conversation
We could use sed... |
fix to remove version number by |
Right, please try :) |
done! |
Hum, since we need to modify the pom.xml files, it's too late to modify them once Maven has been launched. Of course, we can manually call the cppbuild.sh script, but this patch isn't about C++. What about putting the content in a separate script like noopenblas.sh or something like that? Users will need to execute that manually before the build itself though... It's not pretty, but I don't have a better idea right now. Would you? Do you feel that it's OK to leave this in cppbuild.sh? |
Oh, it seems github actions doesn't call |
I'd like to add an option to build OpenCV without OpenBLAS dependencies.
apply patch to exclude OpenBLAS dependencies when environment variable
NOOPENBLAS
is set toyes
.build
then
opencv-windows-x86_64-noopenblas.jar
is created.It's a pity that we have to modify the patch file whenever we upgrade OpenBLAS versions.