Tool.cpp revision 353358
1//===--- Tool.cpp - Compilation Tools -------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "clang/Driver/Tool.h"
10#include "InputInfo.h"
11
12using namespace clang::driver;
13
14Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC,
15           ResponseFileSupport _ResponseSupport,
16           llvm::sys::WindowsEncodingMethod _ResponseEncoding,
17           const char *_ResponseFlag)
18    : Name(_Name), ShortName(_ShortName), TheToolChain(TC),
19      ResponseSupport(_ResponseSupport), ResponseEncoding(_ResponseEncoding),
20      ResponseFlag(_ResponseFlag) {}
21
22Tool::~Tool() {
23}
24
25void Tool::ConstructJobMultipleOutputs(Compilation &C, const JobAction &JA,
26                                       const InputInfoList &Outputs,
27                                       const InputInfoList &Inputs,
28                                       const llvm::opt::ArgList &TCArgs,
29                                       const char *LinkingOutput) const {
30  assert(Outputs.size() == 1 && "Expected only one output by default!");
31  ConstructJob(C, JA, Outputs.front(), Inputs, TCArgs, LinkingOutput);
32}
33