[FFmpeg-devel] [PATCH 3/4] configure: fix check for opencl
James Almer
jamrial at gmail.com
Sat Jun 2 07:16:33 EEST 2018
On 6/2/2018 12:21 AM, Jun Zhao wrote:
> add pkg-config support for opencl check.
>
> Signed-off-by: Jun Zhao <mypopydev at gmail.com>
> ---
> configure | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/configure b/configure
> index 22eeca2..69b8827 100755
> --- a/configure
> +++ b/configure
> @@ -6130,6 +6130,7 @@ enabled openal && { { for al_extralibs in "${OPENAL_LIBS}" "-lopenal"
> die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
> enabled opencl && { check_lib opencl OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
> check_lib opencl CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
> + check_pkg_config opencl OpenCL CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
This should go before the check_lib() one, and the "-lOpenCL" is
superfluous as pkg-config is meant to provide it.
> die "ERROR: opencl not found"; } &&
> { test_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
> test_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
>
More information about the ffmpeg-devel
mailing list