Skip to content

Commit 13f607f

Browse files
committed
Removed compiler_builtins reexports hack, since it has been added recently: rust-lang/compiler-builtins#234
1 parent f756bcc commit 13f607f

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

kernel/nano_core/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ rlibc = "1.0.0"
1212
# x86_64 = { git = "https://github.com/kevinaboos/x86_64" }
1313
x86_64 = { path = "../../libs/x86_64" } # currently using our local copy, forked from Phil Opp's crate
1414

15-
# this is needed for our odd approach of loading the libcore ELF file at runtime
16-
# compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins", features = ["c"] }
1715

1816

1917
[dependencies.log]

kernel/nano_core/src/lib.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
#![feature(used)]
1212

1313

14-
// this is needed for our odd approach of loading the libcore ELF file at runtime
15-
// #![feature(compiler_builtins_lib)]
16-
// extern crate compiler_builtins;
17-
1814

1915
extern crate alloc;
2016
#[macro_use] extern crate log;
@@ -35,9 +31,6 @@ extern crate exceptions;
3531
extern crate captain;
3632

3733

38-
pub mod reexports;
39-
40-
4134

4235
// see this: https://doc.rust-lang.org/1.22.1/unstable-book/print.html#used
4336
#[link_section = ".pre_init_array"] // "pre_init_array" is a section never removed by --gc-sections

kernel/nano_core/src/reexports.rs

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)