


Then when I created a new project (console application) and used the defaults to quickly test it out.
#Setup codeblocks compiler reddi software download#
(IMPORTANT: make sure it has the "mingw" in the file download name, that has the compiler build that is required to compile the code which doesn't automatically comes with the main codeblocks editor software download because codeblocks already assumes you already have another compiler installed on your computer ). I'm a total noob but I reinstalled over the codeblocks giving me these "Can't find file executable in your configured search path for gnc gcc compiler" errors by downloading: Try building and running it and see what happens. You'll want int main(void) to be int main(), but everything else looks good. Go ahead and try your little section of code again. You can restart Code::Blocks if you'd like, just to confirm the changes will stick even if there's a crash (I've had occasional glitches where Code::Blocks will crash and forget any settings changed since the last launch). Once you're done with all that, go ahead and click OK. It's okay if the filenames aren't a perfect match, though different GCC builds might have differently prefixed filenames, as you can see from my setup. Make program: make.exe (mine shows mingw32-make.exe)Īgain, note that all of these files are in the bin subfolder of the folder shown in the Compiler installation folder box - if you can't find these files, you probably have the wrong folder specified.Resource compiler: windres.exe (mine shows windres.exe).Linker for static libs: gcc-ar.exe (mine shows x86_64-w64-mingw32-gcc-ar.exe).Linker for dynamic libs: g++.exe (mine shows x86_64-w64-mingw32-g++.exe).C compiler: gcc.exe (mine shows x86_64-w64-mingw32-gcc.exe).You'll want some variation of the following:

Now, in that same Toolchain executables screen, go through the individual Program Files boxes one by one and verify that the filenames shown in each are correct. If you look into the folder the textbox shows and there isn't a bin subfolder there, you probably have the wrong installation folder specified. Pay careful attention to the warning note Code::Blocks shows: this folder must have a bin subfolder which will contain all the relevant GCC executables. Your path will vary, and this is completely fine just make sure the path in the textbox is the same as the path you installed to. Make sure the Compiler's installation directory textbox matches the folder you installed GCC into. Go into the Settings menu, then select Global compiler settings in the sidebar, and select the Toolchain executables tab.
#Setup codeblocks compiler reddi install#
You don't need to create a project or write any code yet we're just here to set stuff up or double-check your setup, depending on how you opted to install GCC. Once your setup is done, go ahead and launch Code::Blocks. The setup for this might be a bit more complex than you'd care for, so you can go for the 32-bit version or just grab a preconfigured Code::Blocks/TDM-GCC setup here. There are lots and lots of different builds personally, I use the 64-bit build of TDM-GCC. I'm assuming you're on Windows, based on your comments about Visual Studio if you're on a different platform, the steps for setting up GCC should be similar but not identical.įirst you'll need to download GCC. I'm guessing you've installed Code::Blocks but not installed or set up GCC yet.
