Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
61eddafb
Commit
61eddafb
authored
9 years ago
by
Alex Crichton
Browse files
Options
Downloads
Plain Diff
Merge pull request #146 from alexcrichton/no-std
Add a default-on std feature
parents
379e92f2
6d46b6fa
No related branches found
Branches containing commit
No related tags found
Loading
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+4
-0
4 additions, 0 deletions
.travis.yml
Cargo.toml
+2
-1
2 additions, 1 deletion
Cargo.toml
README.md
+9
-0
9 additions, 0 deletions
README.md
src/lib.rs
+3
-1
3 additions, 1 deletion
src/lib.rs
with
18 additions
and
2 deletions
.travis.yml
+
4
−
0
View file @
61eddafb
...
...
@@ -3,6 +3,7 @@ sudo: required
dist
:
trusty
rust
:
-
1.0.0
-
stable
-
beta
-
nightly
services
:
...
...
@@ -10,8 +11,11 @@ services:
script
:
-
if [[ $TRAVIS_RUST_VERSION = nightly* ]]; then
sh ci/run-travis.sh;
elif [[ $TRAVIS_RUST_VERSION = "1.0.0" ]]; then
cargo build;
else
cargo build;
cargo build --no-default-features;
fi
os
:
-
linux
...
...
This diff is collapsed.
Click to expand it.
Cargo.toml
+
2
−
1
View file @
61eddafb
...
...
@@ -14,4 +14,5 @@ other common platform libraries.
"""
[features]
default
=
[]
default
=
[
"use_std"
]
use_std
=
[]
This diff is collapsed.
Click to expand it.
README.md
+
9
−
0
View file @
61eddafb
...
...
@@ -24,6 +24,15 @@ Next, add this to your crate root:
extern
crate
libc
;
```
Currently libc by default links to the standard library, but if you would
instead like to use libc in a
`#![no_std]`
situation or crate you can request
this via:
```
toml
[dependencies]
libc
=
{
version
=
"0.2"
,
default-features
=
false
}
```
## What is libc?
The primary purpose of this crate is to provide all of the definitions necessary
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
3
−
1
View file @
61eddafb
...
...
@@ -82,7 +82,9 @@
reason
=
"use `libc` from crates.io"
,
issue
=
"27783"
))]
#[cfg(all(not(stdbuild),
not(dox)))]
#![cfg_attr(not(feature
=
"use_std"
),
no_std)]
#[cfg(all(not(stdbuild),
not(dox),
feature
=
"use_std"
))]
extern
crate
std
as
core
;
#[macro_use]
mod
macros
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment