• Linking an armcc pre-compiled lib with a GCC project
    Hi, Would it be possible to link a library that has been compiled using armcc 5 to a GNU (GCC) based project?
  • armcc equivalent for gcc -Wuninitialized
    Hello, after spend an entire afternoon tracking a uninitialized class member kind of bug, i could be able to find the armcc compiler equivalent of the gcc -Wuninitialized flag that in theory warn about...
  • Linker configuration from arm-none-eabi-gcc to ARMCC
    Hello, I've a project which are started with arm-none-eabi-gcc and added in the last time the ARMCC. The linker configuration can't easy converted. At the moment I search for a solution to define in the...
  • Static library links differently with gcc ld and armlink
    Hi, I've built a static library using arm-none-eabi-gcc and used the -fdata-sections, -ffunction-sections, and --gc-sections to reduce the library memory footprint. I've used that library successfully...
  • The "weak attribute" usage problem
    Hi, I'm trying to use the weak attribute for the some public API definition to replace once the real APIs were NOT linked. The step I did is like below: 1. Put kinds of components APIs /w weak attribute...