From ef24de24a82fe681581cc130f342363c47c0969a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 7 Jun 2024 07:48:48 +0200 Subject: Merging upstream version 1.75.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/packed_simd/ci/lld-shim.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 vendor/packed_simd/ci/lld-shim.rs (limited to 'vendor/packed_simd/ci/lld-shim.rs') diff --git a/vendor/packed_simd/ci/lld-shim.rs b/vendor/packed_simd/ci/lld-shim.rs new file mode 100644 index 000000000..10263869e --- /dev/null +++ b/vendor/packed_simd/ci/lld-shim.rs @@ -0,0 +1,11 @@ +use std::os::unix::prelude::*; +use std::process::Command; +use std::env; + +fn main() { + let args = env::args() + .skip(1) + .filter(|s| s != "--strip-debug") + .collect::>(); + panic!("failed to exec: {}", Command::new("rust-lld").args(&args).exec()); +} -- cgit v1.2.3