Tool/software: Code Composer Studio
Hello,
I'd like to build and run usecases in C:\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\apps\src\rtos\usecases using makefile under CCS v.8.1.0.00011 environment and my target board is TDA2Px.
Before doing it, I tried to make C++ project with Makefile project --> Hello World C++ Makefile Project and build the project named as "test_mk".
The generated source code "test_mk.cpp" is:
//============================================================================
// Name : test_mk.cpp
// Author :
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C, Ansi-style
//============================================================================
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello World!!!");
return EXIT_SUCCESS;
}
Generated Makefile is:
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
OBJS = test_mk.o
LIBS =
TARGET = test_mk.exe
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)
I got the following messages when executing Build Project menu in CCS.
13:03:54 **** Build of configuration Default for project test_mk ****
gmake -s -j all
process_begin: CreateProcess(NULL, g++ -O2 -g -Wall -fmessage-length=0 -c -o test_mk.o test_mk.cpp, ...) failed.
make (e=2): 지정된 파일을 찾을 수 없습니다.
gmake: *** [test_mk.o] Error 2
13:03:54 Build Finished (took 438ms)
Can you help me to solve this problem?
Thank you.
Sahng-Gyu Park