build_data_linkstamp.cpp 534 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_linkstamp.h"
  5. namespace Carbon::BuildData::Internal {
  6. const std::string_view platform = GPLATFORM;
  7. const bool build_coverage_enabled = BUILD_COVERAGE_ENABLED;
  8. const std::string_view target_name = G3_TARGET_NAME;
  9. const std::string_view build_target = G3_BUILD_TARGET;
  10. } // namespace Carbon::BuildData::Internal