mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:10:13 +01:00
string_view was suggested at https://github.com/carbon-language/carbon-lang/pull/5451#discussion_r2080640267, but it turns out it's helpful to be even more hermetic for build configuration.
15 lines
504 B
C++
15 lines
504 B
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
|
|
|
|
#include "common/build_data_linkstamp.h"
|
|
|
|
namespace Carbon::BuildData::Internal {
|
|
|
|
const char platform[] = GPLATFORM;
|
|
const bool build_coverage_enabled = BUILD_COVERAGE_ENABLED;
|
|
const char target_name[] = G3_TARGET_NAME;
|
|
const char build_target[] = G3_BUILD_TARGET;
|
|
|
|
} // namespace Carbon::BuildData::Internal
|