utralib/
generated.rs

1// Feature flags are checked inside build.rs for sanity, so we
2// can use them here assuming all targets are mutually exclusive.
3
4#[cfg(feature = "precursor-perflib")]
5#[rustfmt::skip]
6mod precursor_perf;
7#[cfg(feature = "precursor-perflib")]
8#[rustfmt::skip]
9pub use precursor_perf::*;
10
11#[cfg(feature = "precursor-dvt")]
12#[rustfmt::skip]
13mod precursor_dvt;
14#[cfg(feature = "precursor-dvt")]
15#[rustfmt::skip]
16pub use precursor_dvt::*;
17
18#[cfg(feature = "renode")]
19#[rustfmt::skip]
20mod renode;
21#[cfg(feature = "renode")]
22#[rustfmt::skip]
23pub use renode::*;
24
25#[cfg(feature = "precursor-pvt")]
26#[rustfmt::skip]
27mod precursor_pvt;
28#[cfg(feature = "precursor-pvt")]
29#[rustfmt::skip]
30pub use precursor_pvt::*;
31
32#[cfg(feature = "cramium-soc")]
33#[rustfmt::skip]
34mod cramium_soc;
35#[cfg(feature = "cramium-soc")]
36#[rustfmt::skip]
37pub use cramium_soc::*;
38
39#[cfg(feature = "cramium-fpga")]
40#[rustfmt::skip]
41mod cramium_fpga;
42#[cfg(feature = "cramium-fpga")]
43#[rustfmt::skip]
44pub use cramium_fpga::*;
45
46#[cfg(feature = "atsama5d27")]
47#[rustfmt::skip]
48mod atsama5d27;
49#[cfg(feature = "atsama5d27")]
50#[rustfmt::skip]
51pub use atsama5d27::*;
52
53// Hosted mode includes nothing, as it relies on the abstract host
54// architecture for I/O; so this file is empty when the "hosted"
55// configuration is selected and there are no corresponding "hosted"
56// mode feature flags.