From 4da16c8026dcc3c1a4af3e65a2c59cae4ac46f1b Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 13 Mar 2019 14:36:36 +0100 Subject: [PATCH] Remove now-unnecessary link_args Removed in https://github.com/rust-lang/rust/pull/56732. --- rls/src/main.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rls/src/main.rs b/rls/src/main.rs index be8b567b996..cf7dcf24937 100644 --- a/rls/src/main.rs +++ b/rls/src/main.rs @@ -5,13 +5,6 @@ //! functionality such as 'goto definition', symbol search, reformatting, and //! code completion, and enables renaming and refactorings. -// See rustc/rustc.rs in rust repo for explanation of stack adjustments. -#![feature(link_args)] -#[allow(unused_attributes)] -#[cfg_attr(all(windows, target_env = "msvc"), link_args = "/STACK:16777216")] -#[cfg_attr(all(windows, not(target_env = "msvc")), link_args = "-Wl,--stack,16777216")] -extern "C" {} - use log::warn; use rls_rustc as rustc_shim;