I was using an older version of GCC (version 6.3.0) for my project - arm processor. I then moved to a newer version (version 10.2.1 20201103) - arm processor.
when I wanted that a specific section will only be a "space holder", for working memory, for example, I used an attribute
__attribute__((section(".sctionName,\"aw\",@nobits#")))
when using the new GCC version I get an error:
Error: junk at end of line, first unrecognized character is `,'
is there an option to do this in the new GCC version?