Update build script convention to change from cargo: (deprecated) to cargo::

This commit is contained in:
gil 2024-05-13 23:08:09 -05:00
parent 41a450393e
commit e1ea4cc21c

View file

@ -2,7 +2,7 @@
fn main() { fn main() {
// Use the linker script. // 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. // Don't do any magic linker stuff.
println!("cargo:rustc-link-arg=--omagic"); println!("cargo::rustc-link-arg=--omagic");
} }