Skip to content

Commit f05e628

Browse files
committed
Remove panic-implementation
rust-lang/rust#51647 has been fixed, so We can remove this hack
1 parent f3a13eb commit f05e628

File tree

5 files changed

+1
-23
lines changed

5 files changed

+1
-23
lines changed

Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ test = false
99
[build-dependencies]
1010
cc = { optional = true, version = "1.0" }
1111

12-
[dev-dependencies]
13-
panic-implementation = { path = 'crates/panic-implementation' }
14-
1512
[features]
1613
default = ["compiler-builtins"]
1714

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ environment:
1515
# so we skip that test for now. Would be great to not skip it!
1616
- TARGET: i686-pc-windows-gnu
1717
MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
18-
MINGW_ARCHIVE: i686-6.3.0-release-win32-dwarf-rt_v5-rev1.7z
18+
MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
1919
MINGW_DIR: mingw32
2020
DEBUG_LTO_BUILD_DOESNT_WORK: 1
2121
- TARGET: x86_64-pc-windows-gnu

crates/panic-implementation/Cargo.toml

-6
This file was deleted.

crates/panic-implementation/src/lib.rs

-11
This file was deleted.

examples/intrinsics.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111
#![feature(lang_items)]
1212
#![feature(start)]
1313
#![feature(allocator_api)]
14-
#![feature(panic_implementation)]
1514
#![cfg_attr(windows, feature(panic_unwind))]
1615
#![no_std]
1716

18-
extern crate panic_implementation;
1917

2018
#[cfg(not(thumb))]
2119
#[link(name = "c")]

0 commit comments

Comments
 (0)