build_data.cpp 530 B

1234567891011121314
  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 "common/build_data.h"
  5. namespace Carbon::BuildData {
  6. const llvm::StringRef Platform = Internal::platform;
  7. const bool BuildCoverageEnabled = Internal::build_coverage_enabled;
  8. const llvm::StringRef TargetName = Internal::target_name;
  9. const llvm::StringRef BuildTarget = Internal::build_target;
  10. } // namespace Carbon::BuildData