Merge pull request #258 from paoloteti/fix-ci
Rename `panic_implementation` -> `panic_handler`
This commit is contained in:
commit
5a88717b46
|
@ -10,7 +10,7 @@ test = false
|
||||||
cc = { optional = true, version = "1.0" }
|
cc = { optional = true, version = "1.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
panic-implementation = { path = 'crates/panic-implementation' }
|
panic-handler = { path = 'crates/panic-handler' }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["compiler-builtins"]
|
default = ["compiler-builtins"]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "panic-implementation"
|
name = "panic-handler"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
// Hack of a crate until rust-lang/rust#51647 is fixed
|
// Hack of a crate until rust-lang/rust#51647 is fixed
|
||||||
|
|
||||||
#![feature(no_core, panic_implementation)]
|
#![feature(no_core, panic_handler)]
|
||||||
#![no_core]
|
#![no_core]
|
||||||
|
|
||||||
extern crate core;
|
extern crate core;
|
||||||
|
|
||||||
#[panic_implementation]
|
#[panic_handler]
|
||||||
fn panic(_: &core::panic::PanicInfo) -> ! {
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
||||||
loop {}
|
loop {}
|
||||||
}
|
}
|
|
@ -11,11 +11,11 @@
|
||||||
#![feature(lang_items)]
|
#![feature(lang_items)]
|
||||||
#![feature(start)]
|
#![feature(start)]
|
||||||
#![feature(allocator_api)]
|
#![feature(allocator_api)]
|
||||||
#![feature(panic_implementation)]
|
#![feature(panic_handler)]
|
||||||
#![cfg_attr(windows, feature(panic_unwind))]
|
#![cfg_attr(windows, feature(panic_unwind))]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
extern crate panic_implementation;
|
extern crate panic_handler;
|
||||||
|
|
||||||
#[cfg(not(thumb))]
|
#[cfg(not(thumb))]
|
||||||
#[link(name = "c")]
|
#[link(name = "c")]
|
||||||
|
|
Loading…
Reference in New Issue