This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-22 20:47:48 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
55b6f64902
rust
/
tests
/
run-make
/
mismatching-target-triples
/
bar.rs
4 lines
51 B
Rust
Raw
Normal View
History
Unescape
Escape
syntax: Implement #![no_core] This commit is an implementation of [RFC 1184][rfc] which tweaks the behavior of the `#![no_std]` attribute and adds a new `#![no_core]` attribute. The `#![no_std]` attribute now injects `extern crate core` at the top of the crate as well as the libcore prelude into all modules (in the same manner as the standard library's prelude). The `#![no_core]` attribute disables both std and core injection. [rfc]: https://github.com/rust-lang/rfcs/pull/1184
2015-07-30 00:01:14 +00:00
#![
feature(no_core)
]
#![
no_core
]
Tweak and add test for detecting libraries with mismatching target triples. Closes #10814.
2014-11-10 10:52:55 +00:00
extern
crate
foo
;
Reference in New Issue
Copy Permalink