diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-06-18 10:31:31 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-06-18 10:31:31 +0200 |
| commit | 9897728709528a02545523bea72576abce89dc4c (patch) | |
| tree | 49619bfb8e3e09cccbc9c2bd1854abfe1618c8fd /macros/src/lib.rs | |
| parent | 81275bfa4f41e2066770087f3a33cad4227eab41 (diff) | |
add homogeneous multi-core support
Diffstat (limited to 'macros/src/lib.rs')
| -rw-r--r-- | macros/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 6e1a797..6502d9c 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -20,7 +20,7 @@ pub fn app(args: TokenStream, input: TokenStream) -> TokenStream { args, input, Settings { - parse_cores: cfg!(feature = "heterogeneous"), + parse_cores: cfg!(feature = "heterogeneous") || cfg!(feature = "homogeneous"), parse_exception: true, parse_extern_interrupt: true, parse_interrupt: true, |
