<div dir="ltr">I've had this for a while too and been looking. Not all versions of clang have -dwarf-column-info, and the clang version just changed.  What worked for me was just deleting it from intel-opencl-clang.  intel-grahics-compiler validates the flag and passes the errors back up, but isn't where the flag is added to the compiler options.  Changing intel-opencl-clang allowed compiles again.  I don't know what the consequences are for debugging and profiling (since I haven't used those), but not compiling is worse.<br><br>--- intel-opencl-clang-11.0~git20200922.orig/options_compile.cpp<br>+++ intel-opencl-clang-11.0~git20200922/options_compile.cpp<br>@@ -178,7 +178,6 @@ std::string EffectiveOptionsFilter::proc<br>   effectiveArgs.push_back("-cl-kernel-arg-info");<br>   effectiveArgs.push_back("-fno-validate-pch");<br>   effectiveArgs.push_back("-fno-caret-diagnostics");<br>-  effectiveArgs.push_back("-dwarf-column-info");<br> <br>   if (std::find_if(effectiveArgs.begin(), effectiveArgs.end(),<br>                    [](const ArgsVector::value_type& a) {<br></div>