• arm-none-eabi-gcc default parameters
    how to know exactly which parameters are enabled/disabled by default for arm-none-eabi-gcc? I have the doubt thinking about the parameter `-fshort-enum`. Try to compile this example (main.c): #include...
  • Issue arm-none-eabi-gcc of gcc-arm-none-eabi-6-2017-q2-update need GLIBC_2.14 and GLIBC_2.11
    Dear All, To use ' arm-none-eabi-gcc' I've got a gcc-arm-none-eabi-6-2017-q2-update.ar.bz2 from ARM Toolchain. But I came across the following issue GLIBC_2.14 and GLIBC_2.11 need to use. u24c02...
  • gcov arm-none-eabi-ar: two different operation options specified
    Hi. I want to set up code coverage for my ARM gcc project. I am using the gcc toolchain that is being installed from this location: https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4...
  • gcc-arm-none-eabi-7-2017-q4-major-win32 support NLS ?
    Hello, I want to make gcc-arm-none-eabi-7-2017-q4-major-win32 output message(warning or error) with chinese. First, i download gcc-arm-none-eabi-7-2017-q4-major sources. then build GUN Toolchain...
  • To build custom test function (not main) with arm-none-eabi-gcc
    Hello Everyone, I am trying to build test function which looks like below: test.c #include<stdio.h> int mymain(int argc, char **argv) { printf("Hellow World!\n"); return 0; } and I...