summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rust/rust-llvm
diff options
context:
space:
mode:
authorDeepesh Varatharajan <Deepesh.Varatharajan@windriver.com>2025-03-27 02:06:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-27 13:41:58 +0000
commit6d78fbe5c5945701b6bd30101da5ce16164f4e6b (patch)
tree6af556f0e130a80d880fae4fece681adfa1032c4 /meta/recipes-devtools/rust/rust-llvm
parent824f05fe73c23c49530eb37c6a4ddab09a9289ad (diff)
downloadpoky-6d78fbe5c5945701b6bd30101da5ce16164f4e6b.tar.gz
rust: Upgrade 1.83.0->1.84.1
Rust stable version updated to 1.84.1. https://blog.rust-lang.org/2025/01/30/Rust-1.84.1.html Renamed and modified the below patch to adapt the new version. rv32-cargo-rustix-0.38.37-fix.patch->rv32-cargo-rustix-0.38.38-fix.patch Modified the below patches to adapt the new version. repro-issue-fix-with-cc-crate-hashmap.patch revert-link-std-statically-in-rustc_driver-feature.patch Dropped the below patches : 0001-NFC-fix-build-failure-100993.patch https://github.com/llvm/llvm-project/commit/6ee49080e4bb43efe7ede10bed15935853bbd434 revert-Zdual-proc-macros-additional-check.patch Issue is fixed in rust-master and the fix is backported in the subsequent patch of the series. (From OE-Core rev: 4265f668de8c6708cb3a003ad655559031724149) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rust/rust-llvm')
-rw-r--r--meta/recipes-devtools/rust/rust-llvm/0001-NFC-fix-build-failure-100993.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/rust/rust-llvm/0001-NFC-fix-build-failure-100993.patch b/meta/recipes-devtools/rust/rust-llvm/0001-NFC-fix-build-failure-100993.patch
deleted file mode 100644
index ed26de73ce..0000000000
--- a/meta/recipes-devtools/rust/rust-llvm/0001-NFC-fix-build-failure-100993.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 40b4fd7a3e81d32b29364a1b15337bcf817659c0 Mon Sep 17 00:00:00 2001
2From: Chen Zheng <czhengsz@cn.ibm.com>
3Date: Tue, 30 Jul 2024 09:02:07 +0800
4Subject: [PATCH] [NFC] fix build failure (#100993)
5
6Fix the build failure caused by
7https://github.com/llvm/llvm-project/pull/94944
8
9Fixes https://github.com/llvm/llvm-project/issues/100296
10Upstream-Status: Backport [https://github.com/llvm/llvm-project/commit/40b4fd7a3e81d32b29364a1b15337bcf817659c0]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 llvm/lib/Analysis/ConstantFolding.cpp | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/llvm/lib/Analysis/ConstantFolding.cpp b/llvm/lib/Analysis/ConstantFolding.cpp
17index 85ee231675d0..084647b1d9d9 100644
18--- a/llvm/lib/Analysis/ConstantFolding.cpp
19+++ b/llvm/lib/Analysis/ConstantFolding.cpp
20@@ -1782,8 +1782,8 @@ Constant *ConstantFoldFP(double (*NativeFP)(double), const APFloat &V,
21 }
22
23 #if defined(HAS_IEE754_FLOAT128) && defined(HAS_LOGF128)
24-Constant *ConstantFoldFP128(long double (*NativeFP)(long double),
25- const APFloat &V, Type *Ty) {
26+Constant *ConstantFoldFP128(float128 (*NativeFP)(float128), const APFloat &V,
27+ Type *Ty) {
28 llvm_fenv_clearexcept();
29 float128 Result = NativeFP(V.convertToQuad());
30 if (llvm_fenv_testexcept()) {