Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jun 2019 14:41:59 +0200
From:      Jan Beich <jbeich@FreeBSD.org>
To:        Mark Linimon <linimon@FreeBSD.org>
Cc:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r504793 - in head/math/clblas: . files
Message-ID:  <r27n-1560-wny@FreeBSD.org>
In-Reply-To: <201906211218.x5LCIBDi019697@repo.freebsd.org> (Mark Linimon's message of "Fri, 21 Jun 2019 12:18:11 %2B0000 (UTC)")
References:  <201906211218.x5LCIBDi019697@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Mark Linimon <linimon@FreeBSD.org> writes:

> Author: linimon
> Date: Fri Jun 21 12:18:11 2019
> New Revision: 504793
> URL: https://svnweb.freebsd.org/changeset/ports/504793
>
> Log:
>   Attempt to fix build on GCC-based systems by removing stray ";" characters.
>   This fix should go upstream.
[...]
> +@@ -534,7 +534,7 @@ clblasGemm(
> +   if (needRowKernel)    makeGemmKernel(   rowClKernel, commandQueues[0],    rowKernelSource, sourceBuildOptions,    &rowKernelBinary,    rowKernelBinarySize, binaryBuildOptions);
> +   if (needColKernel)    makeGemmKernel(   colClKernel, commandQueues[0],    colKernelSource, sourceBuildOptions,    &colKernelBinary,    colKernelBinarySize, binaryBuildOptions);
> +   if (needCornerKernel) makeGemmKernel(cornerClKernel, commandQueues[0], cornerKernelSource, sourceBuildOptions, &cornerKernelBinary, cornerKernelBinarySize, binaryBuildOptions);
> +-  const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };
> ++  const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };;

Why did you add extra ";" (semicolon) here?



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?r27n-1560-wny>