Andrea Marongiu wrote:
It seems to be using the correct as (arm-elf-as) which anyhow doesn't support the -Qy option.
No, it is using the wrong assembler. There are two compilers here, the native x86 linux one, and the cross compiler. You have the native x86 linux compiler using the arm-elf-as assembler, which won't work. The solution is to remove $toolchain-prefix/arm-elf/bin from your path. It is unnecessary and undesirable. Do put $toolchain-prefix/bin on your path though. Jim