• Arm Compiler 6.11 – What’s New?
    Another milestone was achieved for the Arm Compiler with version 6.11 released at the end of October 2018. The key highlights of Arm Compiler 6.11 are: Achieves best-in-class CoreMark score of 3...
  • ARM Compiler 6.11 bug: weak variable debug info error
    Bug founded on the new ARM Compiler 6.11 release, not before. a.cpp: [[gnu::weak]] int var_a = 0; int main(int argc, char const *argv[]) { return var_a; } b.cpp: int var_a = 1; build...
  • Armclang 6.11 - How to troubleshoot fatal error in backed
    Hello, I am in the process of migrating my project previously built with compiler 5 to 6.11 armclang generates fatal error: error in backend: invalid symbol redefinition when compiling one of...
  • Cortex-A9 inline asm
    Note: This was originally posted on 23rd November 2012 at http://forums.arm.com Hi, I am getting below error message for arm inlin in gcc compiler , could you please tell me what is the reason. I am using...
  • "Real" Inline ASM in C
    Hi! To speed up a routine in a C-project, I implemented a function which is called several times in assembler. At the moment it looks like the following: void myop(unsigned char a, unsigned char...