| 1234567891011121314151617181920212223242526 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #ifndef CARBON_TOOLCHAIN_DRIVER_CODEGEN_OPTIONS_H_
- #define CARBON_TOOLCHAIN_DRIVER_CODEGEN_OPTIONS_H_
- #include "common/command_line.h"
- #include "llvm/ADT/StringRef.h"
- #include "llvm/TargetParser/Host.h"
- namespace Carbon {
- // Shared codegen-related options.
- //
- // See the implementation of `Build` for documentation on members.
- struct CodegenOptions {
- auto Build(CommandLine::CommandBuilder& b) -> void;
- std::string host = llvm::sys::getDefaultTargetTriple();
- llvm::StringRef target;
- };
- } // namespace Carbon
- #endif // CARBON_TOOLCHAIN_DRIVER_CODEGEN_OPTIONS_H_
|