diff options
-rw-r--r-- | cortex-m-rt/build.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cortex-m-rt/build.rs b/cortex-m-rt/build.rs index 9d06935..5a8fb9c 100644 --- a/cortex-m-rt/build.rs +++ b/cortex-m-rt/build.rs @@ -55,7 +55,9 @@ INCLUDE device.x"# println!("cargo:rustc-cfg=armv8m"); 240 } else { - panic!("Unexpected target {:?}", target); + // Non ARM target. We assume you're just testing the syntax. + // This value seems as soon as any + 240 }; // checking the size of the interrupts portion of the vector table is sub-architecture dependent |