From db2d772b7a4a47d00d07a4527fa154433abf31c3 Mon Sep 17 00:00:00 2001 From: James MacMahon Date: Fri, 29 Apr 2022 09:58:03 -0400 Subject: [PATCH] don't override rustflags if linking fails and someone wants more information, they can set rustflags on their machine - don't override rustflags for everyone, they're unfortunately not additive. --- .cargo/config | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.cargo/config b/.cargo/config index 4480ef433da..af9200c65e7 100644 --- a/.cargo/config +++ b/.cargo/config @@ -7,7 +7,3 @@ [build] rustdocflags = "--document-private-items" -[target.x86_64-unknown-linux-gnu] -# Attempt to get more verbose output from the linker in the event that linking -# fails. -rustflags = ["-C", "link-args=-Wl,-V"]