• armclang crashes when build debug version firmware
    We have a firmware project, which can be built with DS-5. When building with DS-Gold (v2020.0), armclang crashes with debug configuration: 1. <eof> parser at end of file 2. Code generation 3. Running...
  • Combining C and C++ libraries
    I'm a novice with STM32 and Keil. I'd like to use a BMP280 C library and a RFM69 C++ library. I wasn't able to understand how to use both in the same project. Can someone share some advice/guidance? The...
  • C library folder structure
    Hi, Until now I used to code and debug using IAR Embedded workbench. Now for the first time I downloaded the GNU Arm Embedded Toolchain. I see that there are multiple instances of the same h files...
  • ARM Compiler 6: Armclang
    ARM Compiler 6 uses armclang, but armclang can't use the intrinsic functions(like __qadd) that has used in the previous compiler.How can I get the optimization code? (Does the intrinsic functions are...
  • How to avoid a library being optimized out?
    Hello All, Lets say I have a library foo.a which inside has many object files (bar1.o, bar2.o .. barN.o). How can I tell the linker to not remove the unused sections of the complete library? Not all...