Build error under Windows [closed]
With the following cmake settings:
- mingw
- All defaults
- OPENCV_EXTRA_MODULES_PATH given
Compilation fails:
Any idea, how to fix?
EDIT:
CMake output: http://pastebin.com/3HVJAqwX
MinGW output: http://pastebin.com/X3fZFPdk (4.8.1-4 version)
opencv: 55f490485bd58dc972de9e0333cdff005fce1251 (master latest)
opencv_contrib: 49102c7e7a44dd7c0cc992c27e52a9547aad745e (master latest)
could you try to provide error text instead of an unreadable screenshot ?
also, opencv version, mingw version, etc. required..
ok, so the line_descriptor module did not build for you.
cmake -D BUILD_opencv_line_descriptor=OFF
A small search, several solutions:
http://stackoverflow.com/questions/2520683/how-to-cope-with-intrin-h-no-such-file-or-directory
Reason for this, the intrin.h is simply not known by the mingw compiler, where the buildbot doesn't test for that. Go try and use the suggested fixes!
And if you do succeed in fixing it, then please supply your fix as a PR.