summaryrefslogtreecommitdiffstats
path: root/debian/patches/d-rustc-prefer-dynamic.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:01 +0000
commitc29d7c1ba10d6debd11f9d8aad5d069a6491e60e (patch)
treea2ad46eb513b315f0efd8170af5eb08870165757 /debian/patches/d-rustc-prefer-dynamic.patch
parentMerging upstream version 1.76.0+dfsg1. (diff)
downloadrustc-c29d7c1ba10d6debd11f9d8aad5d069a6491e60e.tar.xz
rustc-c29d7c1ba10d6debd11f9d8aad5d069a6491e60e.zip
Adding debian version 1.76.0+dfsg1-1.debian/1.76.0+dfsg1-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/d-rustc-prefer-dynamic.patch')
-rw-r--r--debian/patches/d-rustc-prefer-dynamic.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/patches/d-rustc-prefer-dynamic.patch b/debian/patches/d-rustc-prefer-dynamic.patch
deleted file mode 100644
index 13bb42922..000000000
--- a/debian/patches/d-rustc-prefer-dynamic.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: Prefer dynamic linking (currently disabled, not applied)
- As per Debian policy, we basically revert
- https://github.com/rust-lang/rfcs/blob/master/text/0404-change-prefer-dynamic.md
- TODO: this does not yet work: https://github.com/rust-lang/rust/issues/43289
- Perhaps a better method would be to modify dh-cargo instead of rustc
-Author: Ximin Luo <infinity0@debian.org>
-Forwarded: not-needed
---- a/src/librustc/session/config.rs
-+++ b/src/librustc/session/config.rs
-@@ -846,7 +846,7 @@
- "don't run LLVM's SLP vectorization pass"),
- soft_float: bool = (false, parse_bool, [TRACKED],
- "use soft float ABI (*eabihf targets only)"),
-- prefer_dynamic: bool = (false, parse_bool, [TRACKED],
-+ prefer_dynamic: bool = (true, parse_bool, [TRACKED],
- "prefer dynamic linking to static linking"),
- no_integrated_as: bool = (false, parse_bool, [TRACKED],
- "use an external assembler rather than LLVM's integrated one"),