aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/cros_llvm_next_flags.go
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-06-21 14:30:56 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-06-21 14:30:56 +0000
commit2a058b7202958ba2d7dbd6fcd94269f22fc1bb8b (patch)
tree73936aba47fe1dc71e9cc05af9747036e935608c /compiler_wrapper/cros_llvm_next_flags.go
parentb75f321fc8978b92ce3db6886ccb966768f0c7a8 (diff)
parent4e4201457e5f51a132101c611c79ccff9f713c8b (diff)
downloadtoolchain-utils-2a058b7202958ba2d7dbd6fcd94269f22fc1bb8b.tar.gz
Change-Id: I7ae9769d7383efa6e18bc3aed217639c3de29ab8
Diffstat (limited to 'compiler_wrapper/cros_llvm_next_flags.go')
-rw-r--r--compiler_wrapper/cros_llvm_next_flags.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/compiler_wrapper/cros_llvm_next_flags.go b/compiler_wrapper/cros_llvm_next_flags.go
new file mode 100644
index 00000000..6cd7cd2a
--- /dev/null
+++ b/compiler_wrapper/cros_llvm_next_flags.go
@@ -0,0 +1,18 @@
+// Copyright 2020 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// +build !android_llvm_next_flags
+
+package main
+
+// This file defines extra flags for llvm-next testing for Chrome OS. Importantly, these flags don't
+// apply to Android's llvm-next wrapper. Android's toolchain-utils copy has a
+// `android_llvm_next_flags.go` file downstream that defines its llvm-next arguments. As you can
+// probably infer, `android_llvm_next_flags.go` is only compiled if the `android_llvm_next_flags`
+// tag is set.
+
+// TODO: Enable test in config_test.go, once we have new llvm-next flags.
+var llvmNextFlags = []string{}
+
+var llvmNextPostFlags = []string{}