mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:10:14 +01:00
This builds on the previous work to flesh out more on-demand runtimes building. It adds building of the `libc++.a` archive runtime. A number of changes are required for this to work: - The runtimes build infrastructure needs to support building sources from multiple parts of LLVM rather than a single part. We do this by lifting the root of the runtimes source paths up a level to a common runtimes tree, and installing the runtimes sources below this directory. - Both libc++ and libc++abi runtimes sources need to be installed, and we even need to install some interesting parts of llvm-libc that are used in the build of libc++. - We need to generate the site configuration header file for libc++ from the CMake template. This includes both setting up a set of platform-independent defines and introducing some basic Bazel support for processing the CMake template itself. Doing all of this also exposed some missing features and limitations of the runtimes building infrastructure that are addressed here. One note is that all of this just adds libc++ to the explicit `build-runtimes` command for testing. It doesn't yet trigger automatically building these prior to linking, or configuring any of the other subcommands to automatically use these runtimes. All of that will come in follow-up PRs. Also, this makes the `clang_runtimes_test` ... _very_ slow in our default build configuration. Compiling libc++, even with many threads on a large Linux server requires up to 50 seconds. I'm open to any suggestions on how to handle this, including disabling the test in non-optimized builds. I have some ideas to speed this up, but fundamentally building libc++ is... not cheap. I did look at some of the existing Bazel tools to process the CMake template, but they all seemed significantly more complex than what we need and didn't have broad adoption. Given that, it seemed slightly better to just roll our own given the simple format. Two of the new LLVM patch are currently under review upstream and so hopefully temporary: - https://github.com/llvm/llvm-project/pull/169155 - https://github.com/llvm/llvm-project/pull/169292
107 lines
3.1 KiB
Python
107 lines
3.1 KiB
Python
#!/usr/bin/env python3
|
|
|
|
__copyright__ = """
|
|
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
|
|
"""
|
|
|
|
"""Script to apply a set of defines to a CMake-style configure file.
|
|
|
|
This serves as the action implementation for `configure_cmake_file.bzl`. See the
|
|
documentation in the rule of that file for more details about how to use this,
|
|
or `--help` on the script.
|
|
"""
|
|
|
|
import argparse
|
|
import re
|
|
from typing import Dict
|
|
|
|
# A set of CMake values that are considered "false".
|
|
# Based on https://cmake.org/cmake/help/latest/command/if.html
|
|
_CMAKE_FALSE_VALUES = {
|
|
"",
|
|
"0",
|
|
"OFF",
|
|
"NO",
|
|
"N",
|
|
"FALSE",
|
|
"IGNORE",
|
|
"NOTFOUND",
|
|
}
|
|
|
|
_VAR_AT_PATTERN = re.compile(r"@([^@]*)@")
|
|
_VAR_DOLLAR_PATTERN = re.compile(r"${([^}]*)}")
|
|
|
|
_DIRECTIVE_PATTERN = re.compile(
|
|
r"^#(?P<indent>[ \t]*)cmakedefine\s+(?P<var>\w+)(?P<rest>.*)?$"
|
|
)
|
|
_DIRECTIVE_01_PATTERN = re.compile(
|
|
r"^#(?P<indent>[ \t]*)cmakedefine01\s+(?P<var>\w+)$"
|
|
)
|
|
|
|
|
|
def _is_cmake_true(value: str) -> bool:
|
|
"""Returns true if the value is not a CMake false value.
|
|
|
|
This is how CMake defines values as 'true' vs. 'false':
|
|
https://cmake.org/cmake/help/latest/command/if.html
|
|
"""
|
|
return (
|
|
value.upper() not in _CMAKE_FALSE_VALUES
|
|
and not value.upper().endswith("-NOTFOUND")
|
|
)
|
|
|
|
|
|
def _substitute_variables(text: str, defines: Dict[str, str]) -> str:
|
|
"""Substitutes @VAR@ and ${VAR} style variables in a string."""
|
|
|
|
def repl(m: re.Match) -> str:
|
|
return defines.get(str(m.group(1)), "")
|
|
|
|
return re.sub(
|
|
_VAR_AT_PATTERN, repl, re.sub(_VAR_DOLLAR_PATTERN, repl, text)
|
|
)
|
|
|
|
|
|
def main() -> None:
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--src", required=True)
|
|
parser.add_argument("--out", required=True)
|
|
parser.add_argument("--defines", nargs=2, action="append", default=[])
|
|
args = parser.parse_args()
|
|
|
|
defines = dict(args.defines)
|
|
|
|
with open(args.src, "r") as f:
|
|
content = f.read()
|
|
|
|
output_lines = []
|
|
for line in content.splitlines():
|
|
if m := re.match(_DIRECTIVE_PATTERN, line):
|
|
var = m.group("var")
|
|
if var in defines and _is_cmake_true(defines[var]):
|
|
rest = _substitute_variables(m.group("rest"), defines)
|
|
output_lines.append(
|
|
"#%sdefine %s %s" % (m.group("indent"), var, rest)
|
|
)
|
|
else:
|
|
# The variable is false, so leave it undefined.
|
|
output_lines.append("/* #undef %s */" % var)
|
|
elif m := re.match(_DIRECTIVE_01_PATTERN, line):
|
|
var = m.group("var")
|
|
indent = m.group("indent")
|
|
if var in defines and _is_cmake_true(defines[var]):
|
|
output_lines.append("#%sdefine %s 1" % (indent, var))
|
|
else:
|
|
output_lines.append("#%sdefine %s 0" % (indent, var))
|
|
else:
|
|
output_lines.append(_substitute_variables(line, defines))
|
|
|
|
with open(args.out, "w") as f:
|
|
f.write("\n".join(output_lines) + "\n")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|