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
Copy file name to clipboardExpand all lines: ansible/roles/opencv/tasks/main.yml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -103,11 +103,13 @@
103
103
file: path="{{ item }}" state=absent
104
104
with_fileglob:
105
105
- /usr/local/lib/libopencv_*
106
+
no_log: True
106
107
become: yes
107
108
108
109
- name: Ensure build folder inside OpenCV repo
109
110
file: path="../../opencv/build" state=directory
110
111
112
+
# Note: libopencv_dnn_modern should be disabled for now (which it will by leaving out '-D PROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc' lol) as it causes undefined symbol errors with protobuf (see also https://github.com/opencv/opencv/issues/10021)
111
113
- name: CMake for OpenCV (no CUDA for now as not yet compatible with 9.0 and benefit for python is very limited)
0 commit comments