/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
common/build_data.cpp
14 строк
530 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.h" namespace Carbon::BuildData { const llvm::StringRef Platform = Internal::platform; const bool BuildCoverageEnabled = Internal::build_coverage_enabled; const llvm::StringRef TargetName = Internal::target_name; const llvm::StringRef BuildTarget = Internal::build_target; } // namespace Carbon::BuildData