superfluous colon in soc_cpu_idle.h prevents compiling with arm-none-eabi-gcc 12.2 #67722
Closed
TorstenRobitzki
started this conversation in
RFC
Replies: 1 comment
-
There is already a merge request for that: #67080 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
While trying to build a project for nrf53 with an arm-none-eabi-gcc (gcc version 12.2.1 20221205) the build fails to compile
cpu_idle.S
. The failing line is this:The definition of
SOC_ON_EXIT_CPU_IDLE
is withinsoc/arm/nordic_nrf/nrf53/soc_cpu_idle.h
:#define SOC_ON_EXIT_CPU_IDLE
.rept 8
nop;
.endr
The error message of the assembler is:
I think, the
;
behind the `nop´ is superfluous and should be removed.Beta Was this translation helpful? Give feedback.
All reactions