about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Paoliello <danpao@microsoft.com>2025-05-07 10:52:18 -0700
committerDaniel Paoliello <danpao@microsoft.com>2025-05-07 10:52:18 -0700
commit742aaf9b697a43c0da8c55fd234f8088f1cfe79c (patch)
treedd215f6081b25e69b68ee2560a79f9ec6264c3ff
parentf5d3fe273b8b9e7125bf8856d44793b6cc4b6735 (diff)
downloadrust-742aaf9b697a43c0da8c55fd234f8088f1cfe79c.tar.gz
rust-742aaf9b697a43c0da8c55fd234f8088f1cfe79c.zip
[arm64] Pointer auth test should link with C static library statically
-rw-r--r--tests/run-make/pointer-auth-link-with-c/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-make/pointer-auth-link-with-c/test.rs b/tests/run-make/pointer-auth-link-with-c/test.rs
index 1a3be80e898..795c6a45f8e 100644
--- a/tests/run-make/pointer-auth-link-with-c/test.rs
+++ b/tests/run-make/pointer-auth-link-with-c/test.rs
@@ -1,4 +1,4 @@
-#[link(name = "test")]
+#[link(name = "test", kind = "static")]
 extern "C" {
     fn foo() -> i32;
 }