File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
authors = [
" Jorge Aparicio <[email protected] >" ]
3
3
build = " build.rs"
4
- name = " rustc_builtins "
4
+ name = " compiler_builtins "
5
5
version = " 0.1.0"
6
6
7
7
[build-dependencies ]
Original file line number Diff line number Diff line change
1
+ #![ cfg_attr( not( stage0) , deny( warnings) ) ]
1
2
#![ cfg_attr( not( test) , no_std) ]
2
3
#![ compiler_builtins]
3
4
#![ crate_name = "compiler_builtins" ]
4
5
#![ crate_type = "rlib" ]
6
+ #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
7
+ html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
8
+ html_root_url = "https://doc.rust-lang.org/nightly/" ,
9
+ html_playground_url = "https://play.rust-lang.org/" ,
10
+ test( attr( deny( warnings) ) ) ) ]
5
11
#![ feature( asm) ]
6
12
#![ feature( compiler_builtins) ]
7
13
#![ feature( core_intrinsics) ]
8
14
#![ feature( linkage) ]
9
15
#![ feature( naked_functions) ]
16
+ #![ feature( staged_api) ]
10
17
#![ no_builtins]
18
+ #![ unstable( feature = "compiler_builtins" ,
19
+ reason = "Compiler builtins. Will never become stable." ,
20
+ issue = "0" ) ]
11
21
12
22
// We disable #[no_mangle] for tests so that we can verify the test results
13
23
// against the native compiler-rt implementations of the builtins.
You can’t perform that action at this time.
0 commit comments