Skip to content

Commit eb6ff66

Browse files
committed
Factor out platforms for which libc is empty
1 parent 4e5ef22 commit eb6ff66

File tree

4 files changed

+262
-271
lines changed

4 files changed

+262
-271
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ matrix:
9090
# QEMU based targets that compile in an emulator
9191
- env: TARGET=x86_64-unknown-freebsd
9292

93+
- env: TARGET=wasm32-unknown-unknown
94+
install: rustup target add $TARGET
95+
script: cargo build --no-default-features --target $TARGET --release
96+
9397
notifications:
9498
email:
9599
on_success: never

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
libc
22
====
33

4-
A Rust library with native bindings to the types and functions commonly found on
5-
various systems, including libc.
4+
Rust wrapper over the system's `libc`.
65

76
[![Build Status](https://travis-ci.org/rust-lang/libc.svg?branch=master)](https://travis-ci.org/rust-lang/libc)
87
[![Build status](https://ci.appveyor.com/api/projects/status/github/rust-lang/libc?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/libc)

0 commit comments

Comments
 (0)