Page 1 of 1

Trouble with building the project

Posted: Mon Mar 21, 2011 11:36 am
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

Re: Trouble with building the project

Posted: Wed Mar 30, 2011 1:18 pm
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