• Incorrect Thumb operand strange behaviour
    Hello, I am trying to compile some asm code with operand unable to be used as immediate, but compiler does not generate error but produce strange binary code, hard to detect erroneous code. The source...
  • Strange behaviour of uint8x8x2_t
    Hi @ all, I have an uint32x4_t on which I want to perform a count of leading zeros and a table lookup with intrinsics. The table lookup should be performed like this: 0 1 2 3 4 5 6 7 8 9 A B C D E...
  • Generating .elf files with ARM toolchain
    Hello. I'm fairly new to embedded software development, and could use some clarification on how to generate .elf files from .c files. I've recently downloaded the following toolchain installation...
  • Why TUI mode is not supported in arm-none-eabi-gdb?
    I downloaded and used toolchains from the following page, and noticed that TUI is not supported in version 7-2018-q2 at Linux. What is the reason to not support TUI in arm-none-eabi-gdb? https://developer...
  • Support for inline functions in C mode
    When trying to compile the following file using arm-none-eabi-gcc-7.3.1 I get a linker error. inline int test() { return 0; } int main(int argc, char* argv[]) { test(); return 0; } ...