[all-commits] [llvm/llvm-project] e6975c: [CMake] Support runtimes targets without specifyin...
Petr Hosek via All-commits
all-commits at lists.llvm.org
Sat Feb 4 15:00:07 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: e6975c4ced27fe93945393603df79557aeb23d83
https://github.com/llvm/llvm-project/commit/e6975c4ced27fe93945393603df79557aeb23d83
Author: Petr Hosek <phosek at google.com>
Date: 2023-02-04 (Sat, 04 Feb 2023)
Changed paths:
M llvm/runtimes/CMakeLists.txt
Log Message:
-----------
[CMake] Support runtimes targets without specifying triple
Currently, for BUILTIN_TARGETS and RUNTIME_TARGETS you can either use
the special "default" value, or a target triple.
For the "default" value, we don't set any target triple and passthrough
a subset of CMake variables into the subbuild. This is typically used
on Darwin where we build universal binaries and a single target triple
therefore isn't sufficient.
For the target triple value, you can set arbitrary CMake variables
through RUNTIMES_<target>_<variable>, but we always set target triple
to <target>. This gives more flexibility, because we can precisely
control what variables are set in the subbuild, but is unsuitable for
platforms like Darwin.
To address this, we would like to introduce a third option which is
similar to the second option, except we won't set target triple in
the subbuild (you can always do so yourself by setting the appropriate
CMake variable, e.g. RUNTIMES_<name>_CMAKE_C_COMPILER_TARGET=<triple>).
This change is a first step in that direction, by eliminating the support
of target triples from builtin_register_target and runtime_register_target
helper functions.
Differential Revision: https://reviews.llvm.org/D117263
More information about the All-commits
mailing list