/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
common/build_data_linkstamp.cpp
14 строк
504 B
Jon Ross-Perkins
Switch BuildData to char arrays (#5464)
13 май 2025, 02:46
Не верифицирован
13 май 2025, 02:46
2f81858
Код
Авторство
О чём код?
// 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