[quote user="Allyson Wu"]But the compilation failed. Below is the entire copy from Console window.[/quote]I think the compile error is caused by the definition of the predefined assembly name __TI_EABI_ASSEMBLER in the project properties.
In the command line output there is are spaces between the __TI_EABI_ASSEMBLER name the equals and the value one. i.e. under CCS project properties -> Build -> ARM Compiler -> Advanced Options -> Assembler Options the following has been added as a "Pre-define assembly symbol NAME (--asm_define, -ad)
[quote]__TI_EABI_ASSEMBLER<space>=<space>1[/quote]The spaces then cause the compiler to attempt to compile a non-existent source file called "=". Try removing the spaces from the pre-define assembly symbol NAME, i.e.:[quote]__TI_EABI_ASSEMBLER=1[/quote]