Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/verify-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ class TargetResult:
Target("aarch64-unknown-openbsd", dist=False),
Target("aarch64-wrs-vxworks", dist=False),
Target("armebv7r-none-eabihf", dist=False),
Target("armv7-rtems-eabihf", dist=False),
Target("armv7-wrs-vxworks-eabihf", dist=False),
Target("armv7r-none-eabihf", dist=False),
Target("armv7s-apple-ios", dist=False),
Comment on lines 157 to 161
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: could you keep this sorted? LGTM otherwise

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad. Should be fixed now.

Expand Down
2 changes: 1 addition & 1 deletion src/new/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ cfg_if! {
// pub(crate) use redox::*;
} else if #[cfg(target_os = "rtems")] {
mod rtems;
pub(crate) use rtems::*;
// pub(crate) use rtems::*;
} else if #[cfg(target_os = "solaris")] {
mod solaris;
pub(crate) use solaris::*;
Expand Down