Author Topic: Linking does not create a .exe for debug  (Read 3507 times)

Offline fsdbass

  • Single posting newcomer
  • *
  • Posts: 2
Linking does not create a .exe for debug
« on: January 02, 2015, 07:53:09 pm »
I have been using codeblock for a few months, but today It will not create an executable for Debug target.  I am compiling the hello world console application.  When I click on the build button, the bin\Debug\Hw.exe is not created even though there are no error messages. I have codeblocks installed on a Windows 8.1 system.
mingw32-g++.exe -Wall -fexceptions -g -DWINVER=0x0501 -D_WIN32_WINNT=0x0501  -c C:\Users\Franklin\Documents\C++\Hw\main.cpp -o obj\Debug\main.o
mingw32-g++.exe  -o bin\Debug\Hw.exe obj\Debug\main.o   -lwinmm
Process terminated with status 0 (0 minute(s), 1 second(s))
0 error(s), 0 warning(s) (0 minute(s), 1 second(s))
Obviously something has changed, but I have no idea what.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7786
    • My Best Post
Re: Linking does not create a .exe for debug
« Reply #1 on: January 02, 2015, 08:08:55 pm »
Best guess is a Anti-Virus software caused problem.

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline fsdbass

  • Single posting newcomer
  • *
  • Posts: 2
Re: Linking does not create a .exe for debug
« Reply #2 on: January 02, 2015, 10:17:50 pm »
Tnx.  The other things I observed make this a good possibility.