xref: /aosp_15_r20/external/toolchain-utils/compiler_wrapper/cros_llvm_next_flags.go (revision 760c253c1ed00ce9abd48f8546f08516e57485fe)
1// Copyright 2020 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//go:build !android_llvm_next_flags
6// +build !android_llvm_next_flags
7
8package main
9
10// This file defines extra flags for llvm-next testing for ChromeOS. Importantly, these flags don't
11// apply to Android's llvm-next wrapper. Android's toolchain-utils copy has a
12// `android_llvm_next_flags.go` file downstream that defines its llvm-next arguments. As you can
13// probably infer, `android_llvm_next_flags.go` is only compiled if the `android_llvm_next_flags`
14// tag is set.
15
16// TODO: Enable test in config_test.go, once we have new llvm-next flags.
17var llvmNextFlags = []string{}
18
19var llvmNextPostFlags = []string{}
20