We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49bca73 commit 8a7eb81Copy full SHA for 8a7eb81
src/bin/rustc.rs
@@ -1,3 +1,10 @@
1
+// See rustc/rustc.rs in rust repo for explanation of stack adjustments.
2
+#![feature(link_args)]
3
+#[allow(unused_attributes)]
4
+#[cfg_attr(all(windows, target_env = "msvc"), link_args = "/STACK:16777216")]
5
+#[cfg_attr(all(windows, not(target_env = "msvc")), link_args = "-Wl,--stack,16777216")]
6
+extern {}
7
+
8
extern crate rls_rustc;
9
10
fn main() {
0 commit comments