File: d-rustc-prefer-dynamic.patch

package info (click to toggle)
rustc 1.86.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 913,560 kB
  • sloc: xml: 158,127; python: 35,921; javascript: 19,689; sh: 19,600; cpp: 18,906; ansic: 13,124; asm: 4,376; makefile: 708; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (18 lines) | stat: -rw-r--r-- 968 bytes parent folder | download | duplicates (27)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"),