Skip to content

Commit

Permalink
[email protected] - Add patch for incompatible_disallow_empty…
Browse files Browse the repository at this point in the history
…_glob (#3507)

An issue was reported in `rules_rust`
(bazelbuild/rules_rust#3137) where some local
patches to satisfy bazelbuild/bazel#8195 were
added to llvm via a `single_version_override` which does not affect
consumers. This change is an attempt to upstream an otherwise noop
change to llvm that supports this flag being flipped in Bazel.

---------

Co-authored-by: Fabian Meumertzheim <[email protected]>
  • Loading branch information
UebelAndre and fmeum authored Dec 31, 2024
1 parent 7994b4d commit 7b17aea
Show file tree
Hide file tree
Showing 18 changed files with 1,183 additions and 1 deletion.
11 changes: 11 additions & 0 deletions modules/llvm-project/17.0.3.bcr.1/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module(
name = "llvm-project",
version = "17.0.3.bcr.1",
)

# Skylark depedndencies
bazel_dep(name = "bazel_skylib", version = "1.3.0")

# Library dependencies
bazel_dep(name = "platforms", version = "0.0.7")
bazel_dep(name = "rules_cc", version = "0.0.9")
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Alexander Khabarov <[email protected]>
Date: Thu, 19 Oct 2023 14:58:38 +0000
Subject: [PATCH] Add `MODULE.bazel`

---
MODULE.bazel | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 MODULE.bazel

diff --git a/MODULE.bazel b/MODULE.bazel
new file mode 100644
index 000000000..f945718c2
--- /dev/null
+++ b/MODULE.bazel
@@ -0,0 +1,11 @@
+module(
+ name = "llvm-project",
+ version = "17.0.3.bcr.1",
+)
+
+# Skylark depedndencies
+bazel_dep(name = "bazel_skylib", version = "1.3.0")
+
+# Library dependencies
+bazel_dep(name = "platforms", version = "0.0.7")
+bazel_dep(name = "rules_cc", version = "0.0.9")
Loading

0 comments on commit 7b17aea

Please sign in to comment.