mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This is the first draft of the implementation of [p6333](https://docs.carbon-lang.dev/proposals/p6333.html). The `build` subcommand shared logic with the `compile` and `link` subcommands, so I've moved some of the functionality in `compile` and `link` to shared `CompileDriver` and `LinkDriver` classes, respectively. This also required exposing the `CompileOptions` and `LinkOptions` subcommand structs for re-use. There's still some work to do on the proposal, most notably the package include automatic path resolution and import, and the refactors to `carbon compile`.
40 lines
1.1 KiB
C++
40 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/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;
|
|
|
|
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_
|