From e1ea4cc21c8a5401713ea29fd14c368dfd882d20 Mon Sep 17 00:00:00 2001 From: gil Date: Mon, 13 May 2024 23:08:09 -0500 Subject: [PATCH] Update build script convention to change from `cargo:` (deprecated) to `cargo::` --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 16ab199..56c3b6b 100644 --- a/build.rs +++ b/build.rs @@ -2,7 +2,7 @@ fn main() { // Use the linker script. - println!("cargo:rustc-link-arg=-Tsrc/script.ld"); + println!("cargo::rustc-link-arg=-Tsrc/script.ld"); // Don't do any magic linker stuff. - println!("cargo:rustc-link-arg=--omagic"); + println!("cargo::rustc-link-arg=--omagic"); }