Linux で IPP 使って OpenCV 2.4.9 ビルド

OpenCVFindIPP.cmakeの231行目〜248行目(下記参照)をコメントアウト

        if (UNIX)
            get_filename_component(INTEL_COMPILER_LIBRARY_DIR ${IPP_ROOT_DIR}/../lib REALPATH)
            if (IPP_X64)
                if(NOT EXISTS ${INTEL_COMPILER_LIBRARY_DIR}/intel64)
                    message(SEND_ERROR "Intel compiler EM64T libraries not found")
                endif()
                set(IPP_LIBRARY_DIRS
                    ${IPP_LIBRARY_DIRS}
                    ${INTEL_COMPILER_LIBRARY_DIR}/intel64)
            else()
                if(NOT EXISTS ${INTEL_COMPILER_LIBRARY_DIR}/ia32)
                    message(SEND_ERROR "Intel compiler IA32 libraries not found")
                endif()
                set(IPP_LIBRARY_DIRS
                    ${IPP_LIBRARY_DIRS}
                    ${INTEL_COMPILER_LIBRARY_DIR}/ia32)
            endif()
        endif()

参考:https://www.evernote.com/shard/s193/sh/79b6ae41-e076-4930-9a75-27c197162730/8bac645cec71aa28b0b17cd0cdf6e012