Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: build/toolchain/linux/BUILD.gn

Issue 2854583002: [infra] Roll clang to match the version used by Flutter (Closed)
Patch Set: Fixes for Windows Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/toolchain/linux/BUILD.gn
diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn
index 4925e15895c3b0f8e6dca9c225b09ca0864e07e7..f92005dfe501b1387c397126151476556589c948 100644
--- a/build/toolchain/linux/BUILD.gn
+++ b/build/toolchain/linux/BUILD.gn
@@ -60,7 +60,7 @@ gcc_toolchain("arm64") {
}
gcc_toolchain("clang_x86") {
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
+ prefix = rebase_path("//buildtools/toolchain/clang+llvm-x86_64-linux/bin",
root_build_dir)
cc = "${compiler_prefix}$prefix/clang"
cxx = "${compiler_prefix}$prefix/clang++"
@@ -89,7 +89,7 @@ gcc_toolchain("x86") {
}
gcc_toolchain("clang_x64") {
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
+ prefix = rebase_path("//buildtools/toolchain/clang+llvm-x86_64-linux/bin",
root_build_dir)
cc = "${compiler_prefix}$prefix/clang"
cxx = "${compiler_prefix}$prefix/clang++"

Powered by Google App Engine
This is Rietveld 408576698