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 Errors in CCSv5-Hello World for AM1808EVM.

Other Parts Discussed in Thread: AM1808

I have attempted to write a simple hello world application in CCSv5 to run on my AM1808 EVM.

However I am unable to successfully compile it, as I get the follow errors:

error: /home/jkillian/CodeSourcery/Sourcery_G++_Lite/bin/../arm-none-linux-gnueabi/libc/thumb2/lib/libgcc_s.so: Conflicting architecture profiles A/M helloprj    C/C++ Problem
failed to merge target specific data of file /home/jkillian/CodeSourcery/Sourcery_G++_Lite/bin/../arm-none-linux-gnueabi/libc/thumb2/lib/libgcc_s.so helloprj    C/C++ Problem

My understanding of these messages is that the compiler is unable to find the appropriate stdio.h resource for the chosen architecture (maybe pulling in the x86 drivers from Unbuntu, and writing them for the selected ARM). 

Would anyone have an idea how I would confirm that all my included & code sourcery tool chain resources are correct; or what might otherwise cause this error in what 'should be' a pretty brain dead program.

 

Thanks,

Jason Killian

 

>> source code as folllows

#include <stdio.h>

int main(void) {

printf("Hello World");

return 0;

}