From 07033a417b761dfc148a27a63a8c304caf03dd8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Wed, 14 Feb 2018 12:11:11 +0100 Subject: [PATCH] change opt-level 2 to 3 in bootstrap rustflags --- src/Cargo.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Cargo.toml b/src/Cargo.toml index c03301852cd3b..422c6574b5beb 100644 --- a/src/Cargo.toml +++ b/src/Cargo.toml @@ -40,13 +40,10 @@ members = [ "tools/rls/test_data/workspace_symbol", ] -# Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit -# MSVC when running the compile-fail test suite when a should-fail test panics. -# But hey if this is removed and it gets past the bots, sounds good to me. [profile.release] -opt-level = 2 +opt-level = 3 [profile.bench] -opt-level = 2 +opt-level = 3 # These options are controlled from our rustc wrapper script, so turn them off # here and have them controlled elsewhere.