Skip to content
Snippets Groups Projects
Unverified Commit 02fe5de2 authored by Yuki Okushi's avatar Yuki Okushi Committed by GitHub
Browse files

Merge pull request #1911 from joshtriplett/master

Fix bootstrap on redox
parents 458f49c8 c4b0d5ef
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// Attributes needed when building as part of the standard library // Attributes needed when building as part of the standard library
#![cfg_attr( #![cfg_attr(
feature = "rustc-dep-of-std", feature = "rustc-dep-of-std",
feature(cfg_target_vendor, link_cfg, no_core, static_nobundle) feature(cfg_target_vendor, link_cfg, no_core)
)] )]
#![cfg_attr(libc_thread_local, feature(thread_local))] #![cfg_attr(libc_thread_local, feature(thread_local))]
// Enable extra lints: // Enable extra lints:
...@@ -27,7 +27,10 @@ ...@@ -27,7 +27,10 @@
#![deny(missing_copy_implementations, safe_packed_borrows)] #![deny(missing_copy_implementations, safe_packed_borrows)]
#![no_std] #![no_std]
#![cfg_attr(feature = "rustc-dep-of-std", no_core)] #![cfg_attr(feature = "rustc-dep-of-std", no_core)]
#![cfg_attr(target_os = "redox", feature(static_nobundle))] #![cfg_attr(
any(feature = "rustc-dep-of-std", target_os = "redox"),
feature(static_nobundle)
)]
#![cfg_attr(libc_const_extern_fn, feature(const_extern_fn))] #![cfg_attr(libc_const_extern_fn, feature(const_extern_fn))]
#[macro_use] #[macro_use]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment