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.
Tool/software: Code Composer Studio
Hello!
I'd like to run scenarios in C:\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\apps\src\rtos\usecases under Windows CCS v8.1.
I made a project "test_makefile" using C++ Project-->Make project-->Empty Project menu. I selected C:\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\build folder as source location.
The generated project contains hlos and rtos folders and Makefile, Rules.make and tools_path.mk files in vision_sdk\build folder.
I changed Build command as gmake -s -j in properties-->C/C++ Build-->Build Settings-->Build command.
When applying Build Project menu, I got the following message.
16:47:01 **** Incremental Build of configuration Default for project test_makefile ****
gmake -s -j
Makefile:1: *** missing separator. Stop.
16:47:02 Build Finished (took 448ms)
What would it be a problem here? Some kind of DRM or anti-virus issue?
I made another test project "test_mk" made from Hello World C++ Makefile Project in C++ Project menu.
I got similar message when applying Build Project menu.
16:51:59 **** Incremental 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
16:51:59 Build Finished (took 439ms)
Is there any solution here?
Thank you in advance.
Sahng-Gyu Park
Hello
user4699607 said:I'd like to run scenarios in C:\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\apps\src\rtos\usecases under Windows CCS v8.1.
I made a project "test_makefile" using C++ Project-->Make project-->Empty Project menu. I selected C:\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\build folder as source location.
The SDK examples are typically built outside the CCS environment via command-line. See section 3.2 of the User's Guide:
<SDK INSTALL DIR>/vision_sdk/docs/UserGuides/VisionSDK_UserGuide_TDA2px.pdf
Please follow the steps there.
user4699607 said:I made another test project "test_mk" made from Hello World C++ Makefile Project in C++ Project menu.
I got similar message when applying Build Project menu.
16:51:59 **** Incremental 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
16:51:59 Build Finished (took 439ms)
I replied to your other post:
https://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/706224
Thanks
ki