Problem trying to build with xTimeComposer

Technical questions regarding the XTC tools and programming with XMOS.
Post Reply
bafiogino
Member
Posts: 8
Joined: Fri Jan 03, 2020 3:26 pm

Problem trying to build with xTimeComposer

Post by bafiogino »

Hi guys,

I installed xTimeComposer 14.4.1 and 32 bit JRE on Window 7 64bit.
When I try to clean all projects an error occurred:

Code: Select all

xmake clean 
xmake[1]: *** [clean_common] Error 1
xmake: *** [clean_common] Error 2
The same behavior when I try to build the project:

Code: Select all

xmake 
xmake[1]: *** [check_modules_msg] Error 1
xmake: *** [check_modules_msg] Error 2

From the command line I have the same error:

Code: Select all

>xmake clean
"Cleaning C:/Users/Sviluppo/xTime_Projects/app_usb_aud_xk_216"
cmd /c if exist ".\bin\" RMDIR /S /Q ".\bin\"
cmd /c if exist ".build" RMDIR /S /Q ".build"
But the ".build" folder is not deleted

Code: Select all

>xmake
Checking build modules
Using build modules: module_usb_shared module_xud module_usb_audio module_spdif_tx module_dfu module_usb_device module_locks lib_xassert lib_logging lib_spi lib_i2c
Analyzing devicehost.cpp
"C:\Progra~2\XMOS\xTIMEcomposer\Community_14.4.1\build\xcommon\module_xcommon/build/mkdir.bat"  ......
xcc2clang.exe: error: no such file or directory: '@_iflag.rsp'
xmake[1]: *** [check_modules_msg] Error 1
xmake: *** [check_modules_msg] Error 2
On Mac and on the other Windows 7 32bit pc everything works fine.

Anyone have any suggestions?

Many thanks!


troldenstein
Member
Posts: 9
Joined: Tue Feb 04, 2020 1:33 pm

Post by troldenstein »

Hi, I have similar struggle.

Building with xmake, but on linux.. For my case I guess i'm lacking some parameters from xmake, because studio builds project just fine
troldenstein
Member
Posts: 9
Joined: Tue Feb 04, 2020 1:33 pm

Post by troldenstein »

My issue was that I tried to xmake from different location than the source code root by providing path to the xmake as parameter and because I was using example Makefile I needed to add CONFIG=16i160xxxxxx

So getting this to work:
cd /path_to_project_root/
xmake CONFIG=16i160xxxxxx

Xmos, you are new to me and your development environment. And noob will I be, for now ':D
Post Reply