POSIX conditional compilation:
* All features related to POSIX environments (env vars, shell stuff) gated by feature flags * Dependencies optional per feature flags * new CI target for non-POSIX build * new CI target for release binary artifact Signed-off-by: Ava Hahn [ava@sunnypup.io](mailto:ava@sunnypup.io)
This commit is contained in:
parent
5e15109b0c
commit
906cb16355
13 changed files with 330 additions and 319 deletions
|
|
@ -51,7 +51,10 @@ pub mod stdlib {
|
|||
}
|
||||
|
||||
pub mod aux {
|
||||
#[cfg(feature="posix")]
|
||||
pub use crate::stl::posix::args_from_ast;
|
||||
#[cfg(feature="posix")]
|
||||
pub use crate::stl::posix::ShellState;
|
||||
#[cfg(feature="posix")]
|
||||
pub use crate::stl::posix::check_jobs;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue