Skip to content

Commit b49cecf

Browse files
committed
Change compiler to stable for emscripten and skip some functions
1 parent 5363161 commit b49cecf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ matrix:
103103
rust: beta
104104
- os: linux
105105
env: TARGET=asmjs-unknown-emscripten
106-
rust: beta
106+
rust: stable
107107
- os: linux
108108
env: TARGET=wasm32-unknown-emscripten
109-
rust: beta
109+
rust: stable
110110

111111
# beta
112112
- os: linux

libc-test/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,8 @@ fn main() {
460460
"setpgid" | "setpgrp" | "setspent" | "settimeofday" | "setxattr" | "shmat" |
461461
"shmctl" | "shmdt" | "shmget" | "sigaltstack" | "signalfd" | "sigsuspend" |
462462
"sigtimedwait" | "sigwait" | "sigwaitinfo" | "splice" | "sync_file_range" |
463-
"syscall" | "sysinfo" | "tee" | "umount" | "umount2" | "unshare" | "vmsplice"
463+
"syscall" | "sysinfo" | "tee" | "umount" | "umount2" | "unshare" | "vmsplice" |
464+
"swapoff" | "vhangup" | "swapon" | "personality"
464465
if emscripten => true,
465466

466467
// n if n.starts_with("epoll") && emscripten => true,

0 commit comments

Comments
 (0)