DarkMage64 wrote:When I run the debugger, I get no executable specified.
If you can't build it - then this is the problem...
DarkMage64 wrote:My OS is Windows 7 64 and I'm using CodeLite 5.1 . I'm using TDM64 - gcc -4.7.1-3. I get this as my build output
CODE: SELECT ALL
C:\Windows\system32\cmd.exe /c "mingw32-make.exe -j 4 -e -f "test_wsp.mk""
'mingw32-make.exe' is not recognized as an internal or external command,
operable program or batch file.
It seems like codelite can not find your mingw32-make
I assume you installed MinGW manually (since I don't provide TDM64-gcc)
So you need to make sure for 2 things here:
1) Make sure that the MinGW64 bin directory is in your path, do this from codelite's menu bar:
Settings -> Environment variables
Add this line:
Ofc, replace C:\Path\To\MinGW64 with the actual path
2) Since you are using mingw64 - I am not sure that mingw32-make exists in its bin directory, so you need to change it so the actual make, from what I have read
it should be mingw
64-make.exe
To change it, do it from codelite's menu bar:
Settings -> Build Settings -> Compilers -> gnu g++ -> Tools -> Make
and change mingw32-make with the proper tool
Eran