tool_runner_base.cpp 624 B

123456789101112131415161718192021
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/driver/tool_runner_base.h"
  5. #include <array>
  6. #include <memory>
  7. #include <optional>
  8. #include "common/vlog.h"
  9. #include "llvm/ADT/ArrayRef.h"
  10. #include "llvm/ADT/StringRef.h"
  11. namespace Carbon {
  12. ToolRunnerBase::ToolRunnerBase(const InstallPaths* install_paths,
  13. llvm::raw_ostream* vlog_stream)
  14. : installation_(install_paths), vlog_stream_(vlog_stream) {}
  15. } // namespace Carbon