mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:40:11 +01:00
Refactors the link driver to automatically compile and cache the carbon prelude for use in linking. Implements a `carbon_library` rule for compiling the Core library dependencies in the examples.
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
// 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_BUILD_SUBCOMMAND_H_
|
|
#define CARBON_TOOLCHAIN_DRIVER_BUILD_SUBCOMMAND_H_
|
|
|
|
#include "common/command_line.h"
|
|
#include "toolchain/driver/codegen_options.h"
|
|
#include "toolchain/driver/compile_options.h"
|
|
#include "toolchain/driver/driver_env.h"
|
|
#include "toolchain/driver/driver_subcommand.h"
|
|
#include "toolchain/driver/link_options.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Options for the build subcommand.
|
|
struct BuildSubcommandOptions {
|
|
auto Build(CommandLine::CommandBuilder& b) -> void;
|
|
|
|
CodegenOptions codegen_options;
|
|
CompileOptions compile_options;
|
|
LinkOptions link_options;
|
|
bool use_temp_dir;
|
|
};
|
|
|
|
class BuildSubcommand : public DriverSubcommand {
|
|
public:
|
|
explicit BuildSubcommand();
|
|
|
|
auto BuildOptions(CommandLine::CommandBuilder& b) -> void override;
|
|
|
|
auto Run(DriverEnv& driver_env) -> DriverResult override;
|
|
|
|
private:
|
|
BuildSubcommandOptions options_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_DRIVER_BUILD_SUBCOMMAND_H_
|