Hello, i have a strange Problem with Code::Block since a few minutes.
Everytime i click on the Red -> Arrow to Debug, it seems to be Debugging, but nothing shows up..
I have tested it in all of my earlyer Project and there it is the same. No Window, that is poping up, no Console..
I have absolutely no clue how that happend. I did just reopen Codeblocks and then nothing happend anymore.
Earlieer today, everything was ok.
I hope someone might be able to help me here :(
Here is the Output of the Debugger view:
Building to ensure sources are up-to-date
Selecting target:
Debug
Adding source dir: C:\Users\Tobias\Desktop\projekts\Hallo\
Adding source dir: C:\Users\Tobias\Desktop\projekts\Hallo\
Adding file: C:\Users\Tobias\Desktop\projekts\Hallo\bin\Debug\Hallo.exe
Changing directory to: C:/Users/Tobias/Desktop/projekts/Hallo/.
Set variable: PATH=.;C:\Program Files (x86)\CodeBlocks\MinGW\bin;C:\Program Files (x86)\CodeBlocks\MinGW;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client;C:\Program Files\Intel\iCLS Client;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\CodeBlocks\MinGW\libexec\gcc\mingw32\4.7.1;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\DTS\Binn;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit;C:\Program Files\Microsoft SQL Server\110\Tools\Binn
Starting debugger: C:\Program Files (x86)\CodeBlocks\MINGW\bin\gdb.exe -G -lines -2 -y C:/Users/Tobias/Desktop/projekts/Hallo/; -srcpath C:/Users/Tobias/Desktop/projekts/Hallo/; C:/Users/Tobias/Desktop/projekts/Hallo/bin/Debug/Hallo.exe
done
Debugger finished with status 1
Selecting target:
Debug
Adding source dir: C:\Users\Tobias\Desktop\projekts\Hallo\
Adding source dir: C:\Users\Tobias\Desktop\projekts\Hallo\
Adding file: C:\Users\Tobias\Desktop\projekts\Hallo\bin\Debug\Hallo.exe
Changing directory to: C:/Users/Tobias/Desktop/projekts/Hallo/.
Set variable: PATH=.;C:\Program Files (x86)\CodeBlocks\MinGW\bin;C:\Program Files (x86)\CodeBlocks\MinGW;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client;C:\Program Files\Intel\iCLS Client;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\CodeBlocks\MinGW\libexec\gcc\mingw32\4.7.1;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\DTS\Binn;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit;C:\Program Files\Microsoft SQL Server\110\Tools\Binn
Starting debugger: C:\Program Files (x86)\CodeBlocks\MINGW\bin\gdb.exe -G -lines -2 -y C:/Users/Tobias/Desktop/projekts/Hallo/; -srcpath C:/Users/Tobias/Desktop/projekts/Hallo/; C:/Users/Tobias/Desktop/projekts/Hallo/bin/Debug/Hallo.exe
done
Debugger finished with status 1
Normaly the Console App should Show up, but it isn't so i can't view Breakpoints etc..
Sorry for my very late answer. Yes it is the same with a simple Hello World console Project.
When i click on: Build and Run, the Hello world console Shows up, but clicking the red -> arrow, nothing happens and still:
Building to ensure sources are up-to-date
Selecting target:
Debug
Adding source dir: C:\Users\Tobias\Desktop\projekts\hello world\
Adding source dir: C:\Users\Tobias\Desktop\projekts\hello world\
Adding file: C:\Users\Tobias\Desktop\projekts\hello world\bin\Debug\hello world.exe
Changing directory to: C:/Users/Tobias/Desktop/projekts/HELLOW~1/.
Set variable: PATH=.;C:\Program Files (x86)\CodeBlocks\MinGW\bin;C:\Program Files (x86)\CodeBlocks\MinGW;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client;C:\Program Files\Intel\iCLS Client;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\CodeBlocks\MinGW\libexec\gcc\mingw32\4.7.1;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\Tools\Binn;c:\Program Files\Microsoft SQL Server\100\DTS\Binn;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit;C:\Program Files\Microsoft SQL Server\110\Tools\Binn
Starting debugger: C:\Program Files (x86)\CodeBlocks\MINGW\bin\gdb.exe -G -lines -2 -y C:/Users/Tobias/Desktop/projekts/HELLOW~1/; -srcpath C:/Users/Tobias/Desktop/projekts/HELLOW~1/; C:/Users/Tobias/Desktop/projekts/HELLOW~1/bin/Debug/HELLOW~1.EXE
done
Debugger finished with status 1
I do have also Visual Studios 2013 installed. May it be because of this?
I do love Code::BLocks for coding in C++ and i do like it more than the VS 2013.
Some Years ago i coded in c# for 3 years, then i loved VS, but now i just want to use an independent IDE for C++ (also because of the WxSmith).
Hope it might be fixable before i got the reinstall Code::BLocks and WxWidgets.
My simple Hello World Console Code:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
The main reason for writing in C++ is because i do study it :)