Skip to content

Commit a50c848

Browse files
authored
Merge pull request #261 from paoloteti/fix-travis-ci
Attempt to fix TravisCI
2 parents 7e1a1e9 + fa36133 commit a50c848

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ matrix:
1111
- env: TARGET=arm-unknown-linux-gnueabihf
1212
- env: TARGET=armv7-unknown-linux-gnueabihf
1313
- env: TARGET=i586-unknown-linux-gnu
14-
- env: TARGET=i686-apple-darwin
14+
- env: TARGET=i686-apple-darwin DEBUG_LTO_BUILD_DOESNT_WORK=1
1515
os: osx
1616
- env: TARGET=i686-unknown-linux-gnu
1717
- env: TARGET=mips-unknown-linux-gnu
@@ -28,7 +28,7 @@ matrix:
2828
- env: TARGET=wasm32-unknown-unknown
2929
install: rustup target add $TARGET
3030
script: cargo build --target $TARGET
31-
- env: TARGET=x86_64-apple-darwin
31+
- env: TARGET=x86_64-apple-darwin DEBUG_LTO_BUILD_DOESNT_WORK=1
3232
os: osx
3333
- env: TARGET=x86_64-unknown-linux-gnu
3434
allow_failures:

crates/panic-handler/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Hack of a crate until rust-lang/rust#51647 is fixed
22

3-
#![feature(no_core, panic_handler)]
3+
#![feature(no_core)]
44
#![no_core]
55

66
extern crate core;

examples/intrinsics.rs

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

0 commit comments

Comments
 (0)