This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler warning #303-D typedef name has already been declared (with same type)

Other Parts Discussed in Thread: MSP430F2410


I am facing below build errors in CCSv5.5.0..
===============

#303-D typedef name has already been declared (with same type) abs.c line 44, external location: C:\ti\ccsv5\tools\compiler\msp430_4.2.1\include\intrinsics.h C/C++ Problem
#303-D typedef name has already been declared (with same type) aes.c line 41, external location: C:\ti\ccsv5\tools\compiler\msp430_4.2.1\include\intrinsics.h C/C++ Problem
#303-D typedef name has already been declared (with same type) cmd.c line 41, external location: C:\ti\ccsv5\tools\compiler\msp430_4.2.1\include\intrinsics.h C/C++ Problem
#303-D typedef name has already been declared (with same type) main.c line 41, external location: C:\ti\ccsv5\tools\compiler\msp430_4.2.1\include\intrinsics.h C/C++ Problem

===============

On Source code, these error lines are header files(#include "channel.h"),variable declarations, macros(#define EXLOG_REC_SIZE 5),etc..

Target: MSP430F2410
CCS Version CCSv5.5.0

I tried adding "xdc__strict" in predefined symbols(solution in http://e2e.ti.com/support/embedded/tirtos/f/355/p/193381/691349.aspx), but it doesn't work.

I need to know how to solve this issue.