Trouble with building the project

General questions regarding the usage of CodeLite
kimp
CodeLite Curious
Posts: 1
Joined: Mon Mar 21, 2011 11:22 am
Genuine User: Yes
IDE Question: C++
Contact:

Trouble with building the project

Post by kimp »

Hello. I'm sorry for my bad english. So, I have a problem with building the project (wxWidgets).

----------Build Started--------
C:\WINDOWS\system32\cmd.exe /c ""E:/Codelite/MinGW-4.4.1/bin/mingw32-g++.exe" -j 2 -f "wspace_wsp.mk""
mingw32-g++.exe: 2: No such file or directory
mingw32-g++.exe: unrecognized option '-j'
----------Build Ended----------
0 errors, 0 warnings


So, in directory e:\codelite are foolowing folders:
e:\codelite
\codelite
\MinGW-4.4.1
\UnitTest++-1.3
\wspace
\wxWidgets-2.8.10

Here is the list of environment variables:

CodeLiteDir=E:\Codelite\CodeLite
UNIT_TEST_PP_SRC_DIR=e:\Codelite\UnitTest++-1.3
WXWIN=e:\Codelite\wxWidgets-2.8.10
PATH=$(WXWIN)\lib\gcc_dll;$(PATH)
WXCFG=e:\Codelite\wxWidgets-2.8.10\lib\gcc_dll\mswu

All other options are default.

Thank you very much
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Trouble with building the project

Post by eranif »

kimp wrote:C:\WINDOWS\system32\cmd.exe /c ""E:/Codelite/MinGW-4.4.1/bin/mingw32-g++.exe" -j 2 -f "wspace_wsp.mk""
You modified the build tool from mingw32-make into mingw32-g++ (which is a compiler)
Change it to 'mingw32-make'

Eran
Make sure you have read the HOW TO POST thread
Post Reply