Code: Select all
----------Build Started--------
C:\Windows\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "CLtest_wsp.mk""
mingw32-make.exe: *** [All] Error 1
----------Build Ended----------
0 errors, 0 warnings
Code: Select all
----------Build Started--------
C:\Windows\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "CLtest.mk" all"
----------Building project:[ CLtest - Debug ]----------
mingw32-make.exe: *** [Debug/main.o.d] Error 1
----------Build Ended----------
0 errors, 0 warnings
On compiling main.cpp
Code: Select all
----------Build Started--------
C:\Windows\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "CLtest.mk" ./Debug/main.o"
----------Building project:[ CLtest - Debug ] (Single File Build)----------
g++ -c "C:/Users/john/DEV/C/CLtest/main.cpp" -g -o ./Debug/main.o -I. -I.
----------Build Ended----------
0 errors, 0 warnings
Code: Select all
----------Build Started--------
C:\Windows\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "CLtest.mk" all"
----------Building project:[ CLtest - Debug ]----------
g++ -o ./Debug/CLtest ./Debug/main.o -L.
----------Build Ended----------
0 errors, 0 warnings
Regards, John