Just for information it seems that I cannot enter a path with spaces in Intermediate Directory :
If I try ./MSVC WM5 Professional/Debug I have :
static_libgynoid.mk:49: warning: overriding commands for target `MSVC'
static_libgynoid.mk:45: warning: ignoring old commands for target `MSVC'
static_libgynoid.mk:49: warning: overriding commands for target `WM5'
static_libgynoid.mk:45: warning: ignoring old commands for target `WM5'
...
When looking at makefile I can see that spaces are not escaped :
@makedir "./MSVC WM5 Professional/Debug"
Maybe it could work if it was written like this :
@makedir "./MSVC\ WM5\ Professional/Debug"
What do you think ?
So to overcome this problem I am using _ instead of spaces.
Configure codelite to use msvc toolchain
-
- CodeLite Enthusiast
- Posts: 30
- Joined: Wed May 20, 2009 1:54 am
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Configure codelite to use msvc toolchain
No it does not - I have tried it and make still complains.smartmobili wrote:Maybe it could work if it was written like this :
@makedir "./MSVC\ WM5\ Professional/Debug"
eranif wrote: smartmobili wrote:C:\cygwin-1.7\bin\make.exe" -j 2 -f "static_libgynoid_wsp.mk"
----------Building project:[ static_libgynoid - Debug ]----------
/bin/sh: C:\cygwin-1.7\bin\make.exe: command not found
Now I understand which path you are talking about: the make path, and this was never fixed, I thought you were talking about the file paths - I will fix this on in the SVN trunk
Fixed in svn now
Eran
Make sure you have read the HOW TO POST thread