Merge pull request #195 from nix-community/mutually-exclusive-fat-thin-stubs
feat(stub): throw compile error in case of enabling fat and thin feat…
This commit is contained in:
commit
9f97a908e4
|
@ -20,6 +20,9 @@ mod fat;
|
|||
#[cfg(feature = "thin")]
|
||||
mod thin;
|
||||
|
||||
#[cfg(all(feature = "fat", feature = "thin"))]
|
||||
compile_error!("A thin and fat stub cannot be produced at the same time, disable either `thin` or `fat` feature");
|
||||
|
||||
use efivars::{export_efi_variables, get_loader_features, EfiLoaderFeatures};
|
||||
use log::info;
|
||||
use measure::measure_image;
|
||||
|
|
Loading…
Reference in New Issue