More CI fixes

This commit is contained in:
Alex Crichton 2018-05-11 16:52:34 -07:00
parent e73b81e2d5
commit e423f3c64b

View File

@ -12,11 +12,12 @@
#![feature(core_float)] #![feature(core_float)]
#![feature(lang_items)] #![feature(lang_items)]
#![feature(start)] #![feature(start)]
#![feature(i128_type)]
#![feature(global_allocator)] #![feature(global_allocator)]
#![feature(allocator_api)] #![feature(allocator_api)]
#![cfg_attr(windows, feature(panic_unwind))] #![cfg_attr(windows, feature(panic_unwind))]
#![no_std] #![no_core]
extern crate core;
#[cfg(not(thumb))] #[cfg(not(thumb))]
extern crate alloc_system; extern crate alloc_system;