summary refs log tree commit diff
path: root/src/tools/rustfmt
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2024-03-12 02:12:28 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2024-08-11 04:16:53 +0200
commit3ee43259ac9ddb7d5e050e9c7e65c848550045da (patch)
tree7941360eb937918b73747169021f2450aa742782 /src/tools/rustfmt
parent730d5d4095a264ef5f7c0a0781eea68c15431d45 (diff)
downloadrust-3ee43259ac9ddb7d5e050e9c7e65c848550045da.tar.gz
rust-3ee43259ac9ddb7d5e050e9c7e65c848550045da.zip
Link `std` statically in `rustc_driver`
Diffstat (limited to 'src/tools/rustfmt')
-rw-r--r--src/tools/rustfmt/src/git-rustfmt/main.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/rustfmt/src/git-rustfmt/main.rs b/src/tools/rustfmt/src/git-rustfmt/main.rs
index 3059d917c6b..5674f40bef9 100644
--- a/src/tools/rustfmt/src/git-rustfmt/main.rs
+++ b/src/tools/rustfmt/src/git-rustfmt/main.rs
@@ -1,3 +1,7 @@
+// We need this feature as it changes `dylib` linking behavior and allows us to link to
+// `rustc_driver`.
+#![feature(rustc_private)]
+
 #[macro_use]
 extern crate tracing;