hej!
thanks for your help. i had this path setting, too - i'm guessing the real problem is, that codelite only works with a make build system (i also don't find a way to add different build systems) because it still calls mingw32-make.exe (just changing this exe in buildsystem settings doesn't work since mingw parameters are still passed) opposing to (for example) codeblocks, that utilizes the toolchain itself (that's what it looks like for me since setting up the vc compiler with paths works from scratch).
if there's anyway to bypass the mingw call i'd appreciate any hints.
regards,
nem
VC++ complier with Codelite
-
- CodeLite Enthusiast
- Posts: 37
- Joined: Fri Oct 01, 2010 8:32 pm
- Genuine User: Yes
- IDE Question: all
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: VC++ complier with Codelite
The only way to change this, is by writing a new one. This can only be extended by code (the current build system is also responsible for generating the makefiles)nemesis wrote:thanks for your help. i had this path setting, too - i'm guessing the real problem is, that codelite only works with a make build system (i also don't find a way to add different build systems) because it still calls mingw32-make.exe (just changing this exe in buildsystem settings doesn't work since mingw parameters are still passed) opposing to (for example) codeblocks, that utilizes the toolchain itself (that's what it looks like for me since setting up the vc compiler with paths works from scratch).
if there's anyway to bypass the mingw call i'd appreciate any hints.
You can switch to custom build, write your own makefile and let codelite call it
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 1
- Joined: Thu May 19, 2011 1:03 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: VC++ complier with Codelite
HI , i am new to CodeLite and like the IDE very much and prefer it above MSVS.
I have the "Build Settings" for the VC++ compiler the same as the screen shot in the previous post.
However in the "Build Systems" tab in the "Build Settings" dialog, only the GNU build systems are available?
And it is set to use "mingw32-make.exe".
How do i get it to use nmake.exe and what would the settings be?
I have MSVS 2005 installed, on a XP SP3 machine.
Please help.
I have the "Build Settings" for the VC++ compiler the same as the screen shot in the previous post.
However in the "Build Systems" tab in the "Build Settings" dialog, only the GNU build systems are available?
And it is set to use "mingw32-make.exe".
How do i get it to use nmake.exe and what would the settings be?
I have MSVS 2005 installed, on a XP SP3 machine.
Please help.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: VC++ complier with Codelite
You can't. You will need to write your own build system.theunsheydenrych wrote:How do i get it to use nmake.exe and what would the settings be?
I have MSVS 2005 installed, on a XP SP3 machine.
search the forum for this
Eran
Make sure you have read the HOW TO POST thread