1
Fork 0

Additional libc cleanup

This commit is contained in:
Tatsuyuki Ishi 2017-08-23 09:57:05 +09:00
parent 7f054990b6
commit 7a8d38e522
3 changed files with 5 additions and 2 deletions

View file

@ -20,7 +20,7 @@
#![deny(warnings)] #![deny(warnings)]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(libc)] #![cfg_attr(unix, feature(libc))]
#![feature(quote)] #![feature(quote)]
#![feature(rustc_diagnostic_macros)] #![feature(rustc_diagnostic_macros)]
#![feature(set_stdio)] #![feature(set_stdio)]
@ -29,6 +29,7 @@ extern crate arena;
extern crate getopts; extern crate getopts;
extern crate graphviz; extern crate graphviz;
extern crate env_logger; extern crate env_logger;
#[cfg(unix)]
extern crate libc; extern crate libc;
extern crate rustc; extern crate rustc;
extern crate rustc_allocator; extern crate rustc_allocator;

View file

@ -16,10 +16,11 @@
#![feature(custom_attribute)] #![feature(custom_attribute)]
#![allow(unused_attributes)] #![allow(unused_attributes)]
#![feature(range_contains)] #![feature(range_contains)]
#![feature(libc)] #![cfg_attr(unix, feature(libc))]
#![feature(conservative_impl_trait)] #![feature(conservative_impl_trait)]
extern crate term; extern crate term;
#[cfg(unix)]
extern crate libc; extern crate libc;
extern crate serialize as rustc_serialize; extern crate serialize as rustc_serialize;
extern crate syntax_pos; extern crate syntax_pos;

View file

@ -14,6 +14,7 @@
#![deny(warnings)] #![deny(warnings)]
#[cfg(any(target_os = "macos", target_os = "ios"))]
extern crate libc; extern crate libc;
extern crate test; extern crate test;
extern crate getopts; extern crate getopts;