Skip to content

Commit

Permalink
rename directory of HermitCore's OS related files (#16)
Browse files Browse the repository at this point in the history
The latest version of libstd provides a new location of the
HermitCore's OS related files. The kernel depends on the latest
version of libstd. Consequently, this PR renames the location.
  • Loading branch information
stlankes committed Mar 19, 2023
1 parent 54defdb commit ca4c940
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ use std::result;

#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
use std::os::fortanix_sgx as os;
#[cfg(target_os = "hermit")]
use std::os::hermit as os;
#[cfg(target_os = "solid_asp3")]
use std::os::solid as os;
#[cfg(any(target_os = "hermit", unix))]
#[cfg(unix)]
use std::os::unix as os;
#[cfg(target_os = "wasi")]
use std::os::wasi as os;
Expand Down

0 comments on commit ca4c940

Please sign in to comment.