NIKHIL
NIKHIL

Reputation: 3

Error installing opencv-3.0.0-beta on Ubuntu 14.04

I am new to opencv and i am trying to install opencv-3.0.0-beta on ubuntu 14.04. When running make command, I get an error at 54%.I followed the same steps mentioned in http://docs.opencv.org/trunk/doc/tutorials/introduction/linux_install/linux_install.html. but I still get an error.

Below is the error message I'm getting.

/usr/bin/ld: ../../../3rdparty/ippicv/unpack/ippicv_lnx/lib/ia32/libippicv.a(jmp_ippiResizeGetBufferSize_16s_as.s.o): relocation R_386_GOTOFF against undefined symbol `ippicvJumpIndexForMergedLibs' can not be used when making a shared object /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status make[2]: * [lib/libopencv_imgproc.so.3.0.0] Error 1 make1: [modules/imgproc/CMakeFiles/opencv_imgproc.dir/all] Error 2 make: ** [all] Error 2

Please help in solving it.

Thanks

Upvotes: 0

Views: 1158

Answers (1)

Ha Dang
Ha Dang

Reputation: 1238

It looks like your IPP configuration bugs. If you don't need IPP, you might want to rerun the cmake command with this option WITH_IPP=OFF.

Further reading here about deactivate IPP and here to properly configure IPP.

Upvotes: 1

Related Questions