From 772cfe9da5966c837da39edde315bcef032591ce Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Thu, 8 Jan 2015 01:03:46 +0100 Subject: [PATCH] allow box_syntax and unknown features in the rustc_llvm crate. --- src/librustc_llvm/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librustc_llvm/lib.rs b/src/librustc_llvm/lib.rs index 0bed754aa3c1..480c6d88cbca 100644 --- a/src/librustc_llvm/lib.rs +++ b/src/librustc_llvm/lib.rs @@ -21,7 +21,9 @@ html_favicon_url = "http://www.rust-lang.org/favicon.ico", html_root_url = "http://doc.rust-lang.org/nightly/")] +#![allow(unknown_features)] #![feature(link_args)] +#![feature(box_syntax)] extern crate libc;