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.

Code Composer Include Files

Hi,


I'm new using Code Composer. I have installed it and open it succesfully. I follow the instructions in (http://processors.wiki.ti.com/index.php/Code_Composer_Studio_v5_Preview_Edition_Users_Guide#Importing_C.2FC.2B.2B_Projects). I create a new project and a new C source file. As I said I follow the instructions on the link.

The program I want to build is just the HelloWorld template which has two include preprocessor instructions (#include <stdio.h> and #include <stdlib.h>). The first time I get the "fatal error: stdio.h: No such file or directory" problem. Then I searched for include files in my SDK_6 folder, with that name and include all the PATHS (Properties -> C/C++ General -> Paths and Symbols -> GNU C -> Add), but it doesn't solves the problem.

I don't know what to do, I need not just this include files, but also Linux include files like termios.h (for linux serial programming). But for the moment I wan't to solve the problem AND KNOW HOW TO SOLVE IT IN FUTURE.

Thanks,

Julian.

  • I append the console message (excuse me for the separate entries in this post):

    make all
    Building file: ../src/CommSerial.c
    Invoking: Cross GCC Compiler
    arm-linux-gnueabihf-gcc -I/home/asus/Documents/TI_SDK_6/linux-devkit/sysroots/armv7ahf-vfp-neon-3.2-oe-linux-gnueabi/usr/include/xen -I/home/asus/Documents/TI_SDK_6/linux-devkit/sysroots/i686-arago-linux/usr/lib/gcc/arm-linux-gnueabihf/4.7.3/include/ssp -I/home/asus/Documents/TI_SDK_6/linux-devkit/sysroots/i686-arago-linux/usr/lib/gcc/arm-linux-gnueabihf/4.7.3/include -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/CommSerial.d" -MT"src/CommSerial.d" -o "src/CommSerial.o" "../src/CommSerial.c"
    In file included from ../src/CommSerial.c:11:0:
    /home/asus/Documents/TI_SDK_6/linux-devkit/sysroots/i686-arago-linux/usr/lib/gcc/arm-linux-gnueabihf/4.7.3/include/ssp/stdio.h:39:24: fatal error: stdio.h: No such file or directory
    compilation terminated.
    make: *** [src/CommSerial.o] Error 1