-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
L4Re improvements #734
L4Re improvements #734
Conversation
* fix dirent, dirent64 * port pthread_attr_t * add l4re-specific pthread code
L4Re builds don't have default libraries. The L4Re build system controls compilation and passes linker flags using -Z itself.
* correct sigaction * correct stat, alias stat64 * remove doubled statvfs definition
src/unix/mod.rs
Outdated
@@ -230,7 +230,7 @@ pub const INADDR_BROADCAST: in_addr_t = 4294967295; | |||
pub const INADDR_NONE: in_addr_t = 4294967295; | |||
|
|||
cfg_if! { | |||
if #[cfg(dox)] { | |||
if #[cfg(any(dox, target_os = "l4re"))] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you separate this out explicitly to a separate clause below? (just to be clear that this branch is the "doc only" branch.
@bors: r+ |
📌 Commit dc0a182 has been approved by |
L4Re improvements This commit improves the x86_64 uClibc port and splits of L4Re-specific structs into a separate submodule. It defines additional constants and fixes some unfinished structs.
💔 Test failed - status-travis |
@bors: retry
…On Thu, Aug 17, 2017 at 3:41 PM, bors ***@***.***> wrote:
💔 Test failed - status-travis
<https://travis-ci.org/rust-lang/libc/builds/265634521?utm_source=github_status&utm_medium=notification>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#734 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95Bz_rUa9uk0RNP2BSzjCzdMErZBfks5sZMGFgaJpZM4O539r>
.
|
L4Re improvements This commit improves the x86_64 uClibc port and splits of L4Re-specific structs into a separate submodule. It defines additional constants and fixes some unfinished structs.
💔 Test failed - status-travis |
@bors: r+ |
📌 Commit cc58834 has been approved by |
L4Re improvements This commit improves the x86_64 uClibc port and splits of L4Re-specific structs into a separate submodule. It defines additional constants and fixes some unfinished structs.
@bors: retry |
L4Re improvements This commit improves the x86_64 uClibc port and splits of L4Re-specific structs into a separate submodule. It defines additional constants and fixes some unfinished structs.
☀️ Test successful - status-appveyor, status-travis |
This commit improves the x86_64 uClibc port and splits of L4Re-specific structs into a separate submodule. It defines additional constants and fixes some unfinished structs.