From beccd69a02364a5ab1b463fa930e1b2a99a73fa1 Mon Sep 17 00:00:00 2001 From: "Szymichowski, Pawel" Date: Tue, 6 Oct 2020 14:33:25 +0200 Subject: [PATCH] The -dwarf-column-info flag is no longer available in Clang 11. As per review https://reviews.llvm.org/rGb0b5162fc23c55906a461366f8acef2431d951c5 The flag logic is now inverted, so debug column info is now ON by default. Flags -gno-column-info and -gcolumn-info are created instead. --- options_compile.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/options_compile.cpp b/options_compile.cpp index 1c5a9598..84997da3 100644 --- a/options_compile.cpp +++ b/options_compile.cpp @@ -178,7 +178,6 @@ std::string EffectiveOptionsFilter::processOptions(const OpenCLArgList &args, effectiveArgs.push_back("-cl-kernel-arg-info"); effectiveArgs.push_back("-fno-validate-pch"); effectiveArgs.push_back("-fno-caret-diagnostics"); - effectiveArgs.push_back("-dwarf-column-info"); if (std::find_if(effectiveArgs.begin(), effectiveArgs.end(), [](const ArgsVector::value_type& a) {