From 307faacd77604599a5f1ca0e248a8116a0f56667 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 2 Sep 2024 20:20:13 -0700 Subject: [PATCH] hexagon: fix symbols defined in global namespace Update `compiler_builtins` to `0.1.124`: Some call targets were defined with aliases that could conflict with symbols from a user's program. These aliases have now been deleted or qualified with two leading underscores. * Includes https://github.com/rust-lang/compiler-builtins/pull/682 * Should fix #129823 --- library/Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Cargo.lock b/library/Cargo.lock index 54ad052c52322..0fbaf283cafa5 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -58,9 +58,9 @@ dependencies = [ [[package]] name = "compiler_builtins" -version = "0.1.123" +version = "0.1.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b47fcbecb558bdad78c7d3a998523c60a50dd6cd046d5fe74163e309e878fff7" +checksum = "0032e7c369e994d5cdad76088a8413bfe17a1d1da86505cb4cca0a512ec2443a" dependencies = [ "cc", "rustc-std-workspace-core",