Files
carbon-lang/toolchain/driver/link_subcommand.h
T
Lucile Rose Nihlen 1a26b57732 add first implementation of carbon build subcommand (#7239)
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`.
2026-06-09 20:24:01 +00:00

36 lines
1.0 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_LINK_SUBCOMMAND_H_
#define CARBON_TOOLCHAIN_DRIVER_LINK_SUBCOMMAND_H_
#include "common/command_line.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "toolchain/driver/codegen_options.h"
#include "toolchain/driver/driver_env.h"
#include "toolchain/driver/driver_subcommand.h"
#include "toolchain/driver/link_options.h"
namespace Carbon {
// Implements the link subcommand of the driver.
class LinkSubcommand : public DriverSubcommand {
public:
explicit LinkSubcommand();
auto BuildOptions(CommandLine::CommandBuilder& b) -> void override {
options_.BuildForLinkSubcommand(b);
}
auto Run(DriverEnv& driver_env) -> DriverResult override;
private:
LinkOptions options_;
};
} // namespace Carbon
#endif // CARBON_TOOLCHAIN_DRIVER_LINK_SUBCOMMAND_H_