• Problem Updating from ARM C/C++ Compiler RVCT4.0 [Build 436] to RVCT4.0 [Build 821]
    Note: This was originally posted on 7th September 2010 at http://forums.arm.com I'm trying to update the arm compiler to a new Build version. I followed the installation instructions (overwrite the executable...
  • How to migrate retarget.c from ARM Compiler 5 to ARM Compiler 6?
    I want to migrate an older project into the ARM Compiler 6, but I am getting errors in the retarget.c /* Short version of retarget.c - Minimum code to support simple printf in Keil MDK-ARM */ /**...
  • ARMASM - include file using defined parameter
    Hello, I trying to include .s file into another .s file using INCLUDE directive with defined parameter, but without success. I check 2 scenario. Scenario 1 startup.s file: #include "Configuration...
  • Why are dynamically-sized arrays implemented as malloc()?
    I'm working on a project that should not use a Heap. In the process of revising my code for this, I've discovered that dynamically-sized arrays, e.g. uint8_t my_array[MIN(input_size, MAX_SIZE)]; are...
  • Is --debug option equivalent to -g option in armcc?
    In armcc user guide I learned that description of --debug and -g are quite similar. Is --debug option equivalent to -g option in armcc?