Home > Back-end >  Why doesn't my code::block build .exe file
Why doesn't my code::block build .exe file

Time:11-28

I have just installed a fresh code::block instance, however the build button doesn't work: I have pressed it many time to build the .exe file, but when I try to run it asks me to build it again.

The "Yes" button on the pop-up dialog that asks me to build doesn't do anything.

My complier's installation directory is C:\Program Files\CodeBlocks\MinGW

Im using Code::block 20.03 with MinGW installation pack

CodePudding user response:

If you have a version of GCC as compiler (such as MingW for Windows), chances are it will come with support for the most recent version of C disabled by default. This can be explicitly enabled by going to Settings -> Compiler
Example

And here, within Global compiler settings, in Compiler settings tab, check the box Have g follow the C 11 ISO C language standard
Example

  •  Tags:  
  • c
  • Related