[llvm] [Bazel] Make LLVM and Clang config headers configurable (PR #126729)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 15 14:01:55 PST 2025
================
@@ -0,0 +1,64 @@
+# This file is licensed under the Apache License v2.0 with LLVM Exceptions.
+# See https://llvm.org/LICENSE.txt for license information.
+# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+
+"""Targetable platforms for the Bazel build."""
+
+# TODO(aaronmondal): Add triples for more useful platforms as per
+# `llvm/include/llvm/TargetParser/Triple.h`.
+
+platform(
+ name = "aarch64-unknown-linux-gnu",
+ constraint_values = [
+ "@platforms//cpu:aarch64",
+ "@platforms//os:linux",
+ ],
+)
+
+platform(
+ name = "arm64-apple-darwin",
+ constraint_values = [
+ "@platforms//cpu:arm64",
+ "@platforms//os:macos",
+ ],
+)
+
+platform(
+ name = "powerpc64le-unknown-linux-gnu",
+ constraint_values = [
+ "@platforms//cpu:ppc64le",
+ "@platforms//os:linux",
+ ],
+)
+
+platform(
+ name = "systemz-unknown-linux_gnu",
+ constraint_values = [
+ "@platforms//cpu:s390x",
+ "@platforms//os:linux",
+ ],
+)
+
+platform(
+ name = "x86_64-pc-win32",
+ constraint_values = [
+ "@platforms//cpu:x86_64",
+ "@platforms//os:windows",
+ ],
+)
+
+platform(
+ name = "x86_64-unknown-darwin",
----------------
MaskRay wrote:
why is this not apple-darwin?
https://github.com/llvm/llvm-project/pull/126729
More information about the llvm-commits
mailing list