Sorry, but there are no more tags available to filter with.
  • ARMCC: How to generate assembly

    I'd like to generate assembly file for a corresponding .c file and I've tried the following which do not work.


    armcc.exe -c test.c -o test.o
    fromelf.exe -c test.o -o test.s
    

    The above generates test.s but it does not have assembly code for any…