Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd support for CloudABI targets to the rustc backend. #46940
Conversation
EdSchouten
added some commits
Dec 22, 2017
rust-highfive
assigned
eddyb
Dec 22, 2017
This comment has been minimized.
This comment has been minimized.
|
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @eddyb (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
This comment has been minimized.
This comment has been minimized.
rust-highfive
assigned
alexcrichton
and unassigned
eddyb
Dec 22, 2017
This comment has been minimized.
This comment has been minimized.
|
@bors: r+ Thanks! |
This comment has been minimized.
This comment has been minimized.
|
|
kennytm
added
the
S-waiting-on-bors
label
Dec 22, 2017
This comment has been minimized.
This comment has been minimized.
|
@bors rollup |
kennytm
added a commit
to kennytm/rust
that referenced
this pull request
Dec 23, 2017
bors
added a commit
that referenced
this pull request
Dec 23, 2017
kennytm
added a commit
to kennytm/rust
that referenced
this pull request
Dec 23, 2017
bors
added a commit
that referenced
this pull request
Dec 23, 2017
kennytm
added a commit
to kennytm/rust
that referenced
this pull request
Dec 23, 2017
kennytm
added a commit
to kennytm/rust
that referenced
this pull request
Dec 23, 2017
bors
added a commit
that referenced
this pull request
Dec 23, 2017
This comment has been minimized.
This comment has been minimized.
bors
added a commit
that referenced
this pull request
Dec 25, 2017
This comment has been minimized.
This comment has been minimized.
|
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
bors
added a commit
that referenced
this pull request
Dec 26, 2017
This comment has been minimized.
This comment has been minimized.
|
|
EdSchouten commentedDec 22, 2017
CloudABI is a sandboxed UNIX-like runtime environment. It is a
programming environment that uses a capability-based security model. In
practice this means that many POSIX interfaces are present, except for
ones that try to access resources out of thin air. For example, open()
is gone, but openat() is present.
Right now I'm at the point where I can compile very basic CloudABI
applications on all four supported architectures (ARM and x86, 32 and 64
bits). The next step will be to get libstd to work. Patches for that are
outside the scope of this change.
More info: https://nuxi.nl/cloudabi/ https://github.com/NuxiNL/cloudlibc/