Opened 3 years ago
Last modified 2 years ago
#63786 reopened defect
opencv3/opencv4: opportunistic lib usage: tesseract, ogre, etc
Reported by: | mascguy (Christopher Nielsen) | Owned by: | mascguy (Christopher Nielsen) |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 2.7.1 |
Keywords: | Cc: | stromnov (Andrey Stromnov), cooljeanius (Eric Gallager) | |
Port: | opencv3 opencv4 |
Description
Not a high priority, but it looks like we need to further audit this port, to avoid opportunistic linking.
With the caveat that we shouldn't preclude use of additional components, like tesseract
: For libraries that are available across-the-board (in terms of macOS releases), consider adding them to the default list of dependencies.
Alternatively, consider additional variants, to explicitly enable those components.
Attachments (1)
Change History (16)
comment:1 Changed 2 years ago by cooljeanius (Eric Gallager)
Cc: | cooljeanius added |
---|
comment:2 Changed 2 years ago by Christopher Nielsen <mascguy@…>
comment:3 Changed 2 years ago by Christopher Nielsen <mascguy@…>
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 follow-ups: 5 6 Changed 2 years ago by cooljeanius (Eric Gallager)
This also affects opencv3, too, btw.
comment:5 Changed 2 years ago by mascguy (Christopher Nielsen)
Replying to cooljeanius:
This also affects opencv3, too, btw. Anyways, I'm testing building with trace mode and max variants enabled (except for vtk since that's broken for me currently) and intend to report back what trace mode says gets accessed afterwards...
Yep, next step is to clean up opencv3
as well.
There might still be a straggler or two left for opencv4
too, such as hdf5
. But getting there!
Changed 2 years ago by cooljeanius (Eric Gallager)
Attachment: | opencv4-main.log.bz2 added |
---|
main.log for opencv4
comment:6 follow-up: 7 Changed 2 years ago by cooljeanius (Eric Gallager)
Replying to cooljeanius:
Anyways, I'm testing building with trace mode and max variants enabled (except for vtk since that's broken for me currently) and intend to report back what trace mode says gets accessed afterwards...
OK so this build failed for me; I just attached the entire log from it since that was easier than finding what the actual error was...
comment:7 follow-up: 8 Changed 2 years ago by mascguy (Christopher Nielsen)
Replying to cooljeanius:
Replying to cooljeanius:
Anyways, I'm testing building with trace mode and max variants enabled (except for vtk since that's broken for me currently) and intend to report back what trace mode says gets accessed afterwards...
OK so this build failed for me; I just attached the entire log from it since that was easier than finding what the actual error was...
I've tested with virtually all variants enabled, from 10.8 thru Monterey, and all looks good.
With one caveat: +openni
fails for Monterey, and might have issues on Big Sur as well. Can you try without that variant?
comment:8 follow-up: 12 Changed 2 years ago by mascguy (Christopher Nielsen)
Replying to mascguy:
I've tested with virtually all variants enabled, from 10.8 thru Monterey, and all looks good.
With one caveat:
+openni
fails for Monterey, and might have issues on Big Sur as well. Can you try without that variant?
Just tested with trace mode enabled for 10.15, Big Sur, and Monterey, with variants: +contrib+eigen+gdal+java+nonfree+opencl+qt5+tbb
. And only Monterey failed, with a similar failure to yours (for module gapi
).
Looks like a linking issue. But there isn't a clear error regarding missing symbols and such, so need to dig into it further. (And appears to only occur with trace mode enabled.)
Can you also remove variants +debug
and +tests
- in addition to removing +openni
- to pare things down a bit?
comment:9 Changed 2 years ago by mascguy (Christopher Nielsen)
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:10 Changed 2 years ago by mascguy (Christopher Nielsen)
Port: | opencv3 added |
---|---|
Summary: | opencv4: opportunistically links to libraries, including 'tesseract' → opencv3/opencv4: opportunistic lib usage: tesseract, ogre, etc |
comment:11 Changed 2 years ago by Christopher Nielsen <mascguy@…>
comment:12 follow-up: 14 Changed 2 years ago by cooljeanius (Eric Gallager)
Replying to mascguy:
Replying to mascguy:
I've tested with virtually all variants enabled, from 10.8 thru Monterey, and all looks good.
With one caveat:
+openni
fails for Monterey, and might have issues on Big Sur as well. Can you try without that variant?Just tested with trace mode enabled for 10.15, Big Sur, and Monterey, with variants:
+contrib+eigen+gdal+java+nonfree+opencl+qt5+tbb
. And only Monterey failed, with a similar failure to yours (for modulegapi
).Looks like a linking issue. But there isn't a clear error regarding missing symbols and such, so need to dig into it further. (And appears to only occur with trace mode enabled.)
Can you also remove variants
+debug
and+tests
- in addition to removing+openni
- to pare things down a bit?
I'm trying removing them one at a time; with +debug
removed it still fails with the same error; I'll try +tests
next... actually, looking at the error a bit more closely, it says that /opt/local/lib/libopenblas.dylib
is missing, but the file does actually exist, and it's listed as one of the files that trace mode hid... port provides /opt/local/lib/libopenblas.dylib
says /opt/local/lib/libopenblas.dylib is provided by: OpenBLAS
so maybe a dependency is just needed for OpenBLAS
?
comment:13 Changed 2 years ago by Christopher Nielsen <mascguy@…>
comment:14 follow-up: 15 Changed 2 years ago by cooljeanius (Eric Gallager)
Replying to cooljeanius:
Replying to mascguy:
Replying to mascguy:
I've tested with virtually all variants enabled, from 10.8 thru Monterey, and all looks good.
With one caveat:
+openni
fails for Monterey, and might have issues on Big Sur as well. Can you try without that variant?Just tested with trace mode enabled for 10.15, Big Sur, and Monterey, with variants:
+contrib+eigen+gdal+java+nonfree+opencl+qt5+tbb
. And only Monterey failed, with a similar failure to yours (for modulegapi
).Looks like a linking issue. But there isn't a clear error regarding missing symbols and such, so need to dig into it further. (And appears to only occur with trace mode enabled.)
Can you also remove variants
+debug
and+tests
- in addition to removing+openni
- to pare things down a bit?I'm trying removing them one at a time; with
+debug
removed it still fails with the same error; I'll try+tests
next...
Update: removing +tests
and +openni
doesn't help; the build still fails with the same error even with those removed.
Edit: removing +contrib
works, though, so I guess it's the +contrib
variant that needs the OpenBLAS
dependency for trace mode...
comment:15 Changed 2 years ago by mascguy (Christopher Nielsen)
Replying to cooljeanius:
Edit: removing
+contrib
works, though, so I guess it's the+contrib
variant that needs theOpenBLAS
dependency for trace mode...
Yep, I still need to dig through the various CMake files, to see where it's being pulled in. Thanks for confirming!
In d7a27c537c8d0e89e36aa24ccb0e5e0d015dd551/macports-ports (master):