Error: 'C:\Program' is not recognized as an...

Technical questions regarding the XTC tools and programming with XMOS.
jerryXCORE
Experienced Member
Posts: 65
Joined: Tue Apr 30, 2013 10:41 pm

Error: 'C:\Program' is not recognized as an...

Post by jerryXCORE »

My program is compiled successfully in xTimeComposer 14
When I try to compile it xTimeComposer 13, I got an error:

Code: Select all

...
Creating dependencies for simplefs.c
Creating dependencies for web_page_functions.c
Creating dependencies for itoa.c
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
xmake[1]: *** [check_version_lib_xtcp] Error 1
xmake: *** [bin//app_webserver_demo.xe] Error 2
I know that I need to double quotes of a command "C:\program file\....",
But which command exactly?


srinie
XCore Addict
Posts: 158
Joined: Thu Mar 20, 2014 8:04 am

Post by srinie »

Hi,
Can you 'cd' to the top level of the app folder and build it?
jerryXCORE
Experienced Member
Posts: 65
Joined: Tue Apr 30, 2013 10:41 pm

Post by jerryXCORE »

I run it inside the xTimeComposer Studio, how can I 'cd' to other folder?
srinie
XCore Addict
Posts: 158
Joined: Thu Mar 20, 2014 8:04 am

Post by srinie »

can you share the project workspace?
Guest

Post by Guest »

I think that could be due to spaces in the path of your workspace. Try changing the path of your workspace and see if this solves your issue.

Jangala
jerryXCORE
Experienced Member
Posts: 65
Joined: Tue Apr 30, 2013 10:41 pm

Post by jerryXCORE »

After digging more, I found it is the problem of checking module version:
* If we use:

Code: Select all

 DEPENDENT_MODULES = lib_gpio(>=1.0.0)
Then I got the error of "C:\Program" is not recognized....

* If we use:

Code: Select all

DEPENDENT_MODULES = lib_gpio
Then it compile successfully.

So probably xTimeComposer-13 doesn't have the capability of checking module version?