On Sun, 2017-07-30 at 20:26 -0500, Aaron Watry wrote:
> Signed-off-by: Aaron Watry <awa...@gmail.com>
> CC: Jan Vesely <jan.ves...@rutgers.edu>
> 
> v2: base it on the device version
> ---
>  src/gallium/state_trackers/clover/llvm/invocation.cpp | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/src/gallium/state_trackers/clover/llvm/invocation.cpp 
> b/src/gallium/state_trackers/clover/llvm/invocation.cpp
> index 63b2961752..443cd31e66 100644
> --- a/src/gallium/state_trackers/clover/llvm/invocation.cpp
> +++ b/src/gallium/state_trackers/clover/llvm/invocation.cpp
> @@ -224,7 +224,8 @@ namespace {
>        c.getPreprocessorOpts().Includes.push_back("clc/clc.h");
>  
>        // Add definition for the OpenCL version
> -      c.getPreprocessorOpts().addMacroDef("__OPENCL_VERSION__=110");
> +      c.getPreprocessorOpts().addMacroDef("__OPENCL_VERSION__=" +
> +              
> std::to_string(get_language_from_version_str(dev.device_version())));

I don't think you can use the same parsing function here.
__OPENCL_VERSION__ can go up to 2.2, while __OPENCL_C_VERSION__ is max
2.0

Jan

>  
>        // clc.h requires that this macro be defined:
>        
> c.getPreprocessorOpts().addMacroDef("cl_clang_storage_class_specifiers");

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to