• armcc
    Note: This was originally posted on 5th April 2013 at http://forums.arm.com Is there a compiler option or pragma that allows me to see "padding" in c structure?   typedef struct st {   char a; ...
  • STL support for C++ ARMCC compiler 5 and 6
    For ARMCC5 here I can find the C++ supported features. I see that additions to the C++11 standard template library are NOT supporte. ARM ® Compiler 5 includes only the C++03 standard template library...
  • Compound Literals with ARMCC: or what does '--gnu'?
    I'd like to use compound literals. So as I found in uVision help that if we use --gnu as additional compiler string, this C99 functionality is given. int y[] = (int []) {1, 2, 3}; // error in strict...
  • ARMCC bug
    I think I have found a bug for ARMCC. in my case, the correct result which would be: VCMPE.F32 s0,s1 VMRS APSR_nzcv,FPSCR ITTT LS But actually, that was: VCMPE.F32 s0,s1 VMRS APSR_nzcv...
  • armcc assembler
    Hi in assembler file I have // RO_BASE = 0x78000000 funcName DCD FooEntry - . + . what does it mean "minus dot plus dot"?