summaryrefslogtreecommitdiff
path: root/contrib/depends/patches
diff options
context:
space:
mode:
authormalik1004x <malikowskirobert@gmail.com>2025-07-11 06:27:50 +0200
committerCzarek Nakamoto <cyjan@mrcyjanek.net>2025-07-13 15:31:13 +0200
commit670020c850da7af3f1a7fa6b00025a124979f465 (patch)
tree9eeeac3204ac1541df2adfd8b2676a455adc1a0c /contrib/depends/patches
parent74e861aa4e27de802652602d72e2612b7046449c (diff)
Rust bootstrap support for macOS aarch64 (#143)
* darwin rust bootstrap support * add patches for darwin rust bootstrap
Diffstat (limited to 'contrib/depends/patches')
-rw-r--r--contrib/depends/patches/native_mrustc/codegen_c.cpp.patch17
-rw-r--r--contrib/depends/patches/native_rust_1_55_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_56_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_57_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_58_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_59_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_60_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_61_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_62_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_63_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_64_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_65_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_66_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_67_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_68_2/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_69_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_70_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_71_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_72_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_73_0/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_74_1/assembly.h.patch14
-rw-r--r--contrib/depends/patches/native_rust_1_75_0/assembly.h.patch14
22 files changed, 311 insertions, 0 deletions
diff --git a/contrib/depends/patches/native_mrustc/codegen_c.cpp.patch b/contrib/depends/patches/native_mrustc/codegen_c.cpp.patch
new file mode 100644
index 0000000..b392636
--- /dev/null
+++ b/contrib/depends/patches/native_mrustc/codegen_c.cpp.patch
@@ -0,0 +1,17 @@
+--- a/src/trans/codegen_c.cpp 2025-07-08 00:17:10.022769383 +0200
++++ b/src/trans/codegen_c.cpp 2025-07-08 00:17:18.404645999 +0200
+@@ -1297,8 +1297,14 @@
+ // HACK: Work around [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117423] by disabling an optimisation stage
+ if( opt.opt_level > 0 )
+ {
++ #ifndef __clang__ // clang doesn't have this option.
+ args.push_back("-fno-tree-sra");
++ #endif
+ }
++ #ifdef __APPLE__
++ args.push_back("-framework");
++ args.push_back("Security");
++ #endif
+ if( opt.emit_debug_info )
+ {
+ args.push_back("-g"); \ No newline at end of file
diff --git a/contrib/depends/patches/native_rust_1_55_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_55_0/assembly.h.patch
new file mode 100644
index 0000000..8800633
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_55_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2021-07-12 08:53:30.000000000 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-08 21:51:23.202034452 +0200
+@@ -249,9 +249,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_56_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_56_1/assembly.h.patch
new file mode 100644
index 0000000..d428a65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_56_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.469384349 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:03.694440678 +0200
+@@ -254,9 +254,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_57_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_57_0/assembly.h.patch
new file mode 100644
index 0000000..d428a65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_57_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.469384349 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:03.694440678 +0200
+@@ -254,9 +254,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_58_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_58_1/assembly.h.patch
new file mode 100644
index 0000000..d428a65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_58_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.469384349 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:03.694440678 +0200
+@@ -254,9 +254,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_59_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_59_0/assembly.h.patch
new file mode 100644
index 0000000..d428a65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_59_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.469384349 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:03.694440678 +0200
+@@ -254,9 +254,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_60_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_60_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_60_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_61_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_61_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_61_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_62_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_62_1/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_62_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_63_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_63_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_63_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_64_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_64_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_64_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_65_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_65_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_65_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_66_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_66_1/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_66_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_67_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_67_1/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_67_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_68_2/assembly.h.patch b/contrib/depends/patches/native_rust_1_68_2/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_68_2/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_69_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_69_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_69_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_70_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_70_0/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_70_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_71_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_71_1/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_71_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_72_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_72_1/assembly.h.patch
new file mode 100644
index 0000000..a453b65
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_72_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.474103047 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:14.327250160 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_73_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_73_0/assembly.h.patch
new file mode 100644
index 0000000..693f925
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_73_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.479066578 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:21.978710547 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_74_1/assembly.h.patch b/contrib/depends/patches/native_rust_1_74_1/assembly.h.patch
new file mode 100644
index 0000000..693f925
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_74_1/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.479066578 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:21.978710547 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \
diff --git a/contrib/depends/patches/native_rust_1_75_0/assembly.h.patch b/contrib/depends/patches/native_rust_1_75_0/assembly.h.patch
new file mode 100644
index 0000000..693f925
--- /dev/null
+++ b/contrib/depends/patches/native_rust_1_75_0/assembly.h.patch
@@ -0,0 +1,14 @@
+--- a/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:41:44.479066578 +0200
++++ b/src/llvm-project/compiler-rt/lib/builtins/assembly.h 2025-07-10 12:46:21.978710547 +0200
+@@ -260,9 +260,10 @@
+ .globl name SEPARATOR \
+ SYMBOL_IS_FUNC(name) SEPARATOR \
+ DECLARE_SYMBOL_VISIBILITY_UNMANGLED(name) SEPARATOR \
++ name: SEPARATOR \
+ CFI_START SEPARATOR \
+ DECLARE_FUNC_ENCODING \
+- name: SEPARATOR BTI_C
++ BTI_C
+
+ #define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
+ .globl SYMBOL_NAME(name) SEPARATOR \