Skip to content

Commit 072637f

Browse files
committed
Enable termios on iOS and move it to Tier 2
1 parent 55d68d9 commit 072637f

File tree

3 files changed

+7
-25
lines changed

3 files changed

+7
-25
lines changed

.travis.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -108,23 +108,6 @@ matrix:
108108
rust: nightly
109109

110110
allow_failures:
111-
# iOS is still being worked on, so for now don't block on compilation failures
112-
- env: TARGET=aarch64-apple-ios DISABLE_TESTS=1
113-
rust: 1.13.0
114-
os: osx
115-
- env: TARGET=armv7-apple-ios DISABLE_TESTS=1
116-
rust: 1.13.0
117-
os: osx
118-
- env: TARGET=armv7s-apple-ios DISABLE_TESTS=1
119-
rust: 1.13.0
120-
os: osx
121-
- env: TARGET=i386-apple-ios DISABLE_TESTS=1
122-
rust: 1.13.0
123-
os: osx
124-
- env: TARGET=x86_64-apple-ios DISABLE_TESTS=1
125-
rust: 1.13.0
126-
os: osx
127-
128111
# Planning to add these targets, but they can fail for now
129112
- env: TARGET=mips64-unknown-linux-gnuabi64
130113
rust: 1.13.0

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,24 @@ Tier 1:
6767
* x86_64-unknown-linux-musl
6868

6969
Tier 2:
70-
* i686-unknown-freebsd
71-
* x86_64-unknown-netbsd
70+
* aarch64-apple-ios
7271
* aarch64-linux-android
7372
* arm-linux-androideabi
73+
* armv7-apple-ios
7474
* armv7-linux-androideabi
75+
* armv7s-apple-ios
76+
* i386-apple-ios
7577
* i686-linux-android (requires Rust >= 1.18)
78+
* i686-unknown-freebsd
79+
* x86_64-apple-ios
7680
* x86_64-linux-android (requires Rust >= 1.18)
81+
* x86_64-unknown-netbsd
7782

7883
Tier 3:
79-
* aarch64-apple-ios
8084
* arm-unknown-linux-musleabi (requires Rust >= 1.14)
81-
* armv7-apple-ios
82-
* armv7s-apple-ios
83-
* i386-apple-ios
8485
* mips64-unknown-linux-gnuabi64
8586
* mips64el-unknown-linux-gnuabi64
8687
* s390x-unknown-linux-gnu
87-
* x86_64-apple-ios
8888

8989
## Usage
9090

src/sys/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ pub mod syscall;
3838
#[cfg(any(target_os = "linux"))]
3939
pub mod reboot;
4040

41-
#[cfg(not(target_os = "ios"))]
4241
pub mod termios;
4342

4443
#[cfg(any(target_os = "linux", target_os = "android"))]

0 commit comments

Comments
 (0)