From d5357c1b399410b2559d32b2fbd4afa92c57d7fa Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Thu, 13 Apr 2023 22:24:33 +0900 Subject: [PATCH 1/6] stdarch: update submodule --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index b655243782c18..1044810de54ea 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit b655243782c18d3419439daa523782e0818ecf26 +Subproject commit 1044810de54ea6f4026951e5d54211503ea0bd9e From 49413bb619e3ed8d589e7cf7f2d81127b7f6ce36 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Mon, 24 Apr 2023 05:36:49 +0900 Subject: [PATCH 2/6] stdarch: update submodule, take 2 --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index 1044810de54ea..24c2188ab75db 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit 1044810de54ea6f4026951e5d54211503ea0bd9e +Subproject commit 24c2188ab75dbb15c9822e99f712a3a7ad390a8c From 1042b65997084f3c9de06f1c5e64ace28cbe7a26 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Tue, 25 Apr 2023 05:30:20 +0900 Subject: [PATCH 3/6] stdarch: update submodule, take 3 --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index 24c2188ab75db..313a8bd2b7ee5 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit 24c2188ab75dbb15c9822e99f712a3a7ad390a8c +Subproject commit 313a8bd2b7ee5a758afde790cabd6f7717490bcd From 4cab0dce2f27742823b1604d61e4500ad09c8393 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Thu, 4 May 2023 13:52:21 +0900 Subject: [PATCH 4/6] stdarch: update submodule, take 4 --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index 313a8bd2b7ee5..461aad2bb6627 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit 313a8bd2b7ee5a758afde790cabd6f7717490bcd +Subproject commit 461aad2bb66270c3b49bbcb1a753fa1d0dffac26 From f7e54b85c42122b6e0a87eadecbac7b4ae8d5d04 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Mon, 8 May 2023 19:03:16 +0900 Subject: [PATCH 5/6] stdarch: update submodule, take 5 --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index 461aad2bb6627..7e2cdc675b921 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit 461aad2bb66270c3b49bbcb1a753fa1d0dffac26 +Subproject commit 7e2cdc675b92165c5f8c4c794620252be4605e74 From a4014f08a77f5e1df79e04492440eb1dbdc478bc Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Mon, 8 May 2023 19:09:12 +0900 Subject: [PATCH 6/6] std: remove test for arm's crypto feature please see https://github.com/rust-lang/rust/pull/110285#issuecomment-1521201953 for more details --- library/std/tests/run-time-detect.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/std/tests/run-time-detect.rs b/library/std/tests/run-time-detect.rs index bf3c81fcc980b..9ce29a33df6e6 100644 --- a/library/std/tests/run-time-detect.rs +++ b/library/std/tests/run-time-detect.rs @@ -16,7 +16,6 @@ fn arm_linux() { // tidy-alphabetical-start println!("aes: {}", is_arm_feature_detected!("aes")); println!("crc: {}", is_arm_feature_detected!("crc")); - println!("crypto: {}", is_arm_feature_detected!("crypto")); println!("neon: {}", is_arm_feature_detected!("neon")); println!("pmull: {}", is_arm_feature_detected!("pmull")); println!("sha2: {}", is_arm_feature_detected!("sha2"));