Codeblocks setup

From The Powder Toy
Revision as of 05:32, 10 October 2012 by abczyx123987 (talk | contribs) (Update Code::Blocks project, put more emphasis on having the correct version of MinGW, changed MinGW installation instructions)
Jump to: navigation, search

Author: tian110796

Fixed by macweirdo for Version 47 (Python Console Fixes)

Some parts are from JojoBond.

Environmental variable instuctions by pilojo.

Last modified: 10/09/2012


This is a guide for compiling using Code::Blocks with MinGW. This guide is targeted to Windows users who are intimidated by the large Visual C++ Express download.

Note: This tutorial works only in Windows, but will work in Macintosh with minor changes.

Pre-made Project Files

These downloads are intended for those who can't be bothered to do all of this him/herself. They are not guaranteed to be up-to-date, nor is there any guarantee that any of these will even work. Hence, it is encouraged to try to do this all yourself (it may look long, but it's really not that bad) rather than relying on these downloads, which may or may not be kept up-to-date.

If you have neither MinGW nor Code::Blocks installed: This download contains everything you need to compile TPT, including the Code::Blocks IDE, the MinGW compiler, and the source code for TPT v79.2. If you download this, it's still a good idea to add the bin directory containing the MinGW executables to the PATH environment variable as described at the bottom of the "MinGW Preparation" section below (it might still work if you don't, but that's not guaranteed).

If you already have Code::Blocks and/or MinGW installed: This download contains a project file and all necessary headers, libraries, and the source for v83.0 of The Powder Toy. For this to work, you must have the correct version of MinGW (4.6.x) installed. Otherwise, you may get errors about undefined references to '__chkstk_ms'. In particular, the default Code::Blocks + MinGW installation will not work with this project file. If this project file doesn't work for you, try updating your MinGW and/or going through the steps below. Sorry for any inconveniences this may cause you.

MinGW Preparation

  • There are multiple ways (not just the ones listed below) to install the correct version of MinGW. Regardless of how you install MinGW, note that you must have MinGW 4.6.x in order to build successfully. If you install an older version, you may get errors about undefined references to '__chkstk_ms', and if you install a newer version, the compiled executable will most likely crash.
  • Here are two ways to install MinGW:

First method (untested)

  • Download TDM-GCC. (this isn't exactly MinGW per se, but it's close enough and should work)
  • Uncheck "Check for updated files on the TDM-GCC server", and press "Create".
  • Change the installation directory to C:\MinGW. (You could probably leave it as it is if you want, but from here on out, this tutorial will assume C:\MinGW as the directory in which MinGW is installed.)
  • Leave all of the checkboxes as is, unless you don't want to install the C++ compiler (g++, under "gcc") or the debugger (GDB). Definitely leave "Add to PATH" checked, though. Then click "Install".

Second method (for the more technologically advanced)

  • Download mingw-get, which is MinGW's official command-line installer.
  • Extract the contents to C:\MinGW.
  • Add "C:\MinGW\bin" to the PATH environment variable, without quotes (see below if you don't know how).
  • Open up a command prompt window, and type mingw-get install mingw-get, followed by mingw-get update.
  • To install MinGW GCC 4.6.2, type mingw-get install "gcc<4.7" "g++<4.7" mingw32-make gdb (the quotes are necessary so that the shell doesn't interpret it as input redirection). If you don't want to install the C++ compiler, the GNU 'make' utility, or the GDB debugger, you can leave those out of the command if you wish.

How to add MinGW to the PATH environment variable:

  • 1. Go to My Computer.
  • 2. System properties/settings.
  • 3. Advanced system settings.
  • 4. Environmental Variables.
  • 5. Second box, scroll down till you see PATH.
  • 6. Click PATH, then click Edit.
  • 7. If there is not a semi-colon at the end of the line, add one and then add "C:\MinGW\bin" without quotes.
  • 8. Press OK
  • 9. Continue tutorial.

Code::Blocks preparation

  • Download and Install Code::Blocks here. Do not install the MinGW compiler that is shipped with it, or you may get errors about undefined references to '__chkstk_ms'. Instead, use one of the above methods to install MinGW.
  • In the first run, you will be asked what compiler to use. Select "MinGW" or "GNU GCC Compiler".
  • Code::Blocks is now ready!

Preparing the project

  • Download the latest source and put it in an empty folder. Or, if you want to compile the latest stable version, look here.
  • Download these libraries and extract it directly into the source folder.
  • Open Code::Blocks.
  • Create a new empty project in the folder where your source exists. (sometimes it adds the project name to the directory; if that happens, remove the project name part from the directory)
  • In the Management window you will see the project name listed there. Right-click it, click "Add files recursively...", and choose the folder where all of the files are.
  • Leave all the checkboxes as they are and click "OK".
  • At the very top of the window, next to "Build target:", open the drop-down menu and click "Release". (it probably won't matter because of the next few steps, but it's still a good thing to do)
  • Go to Project -> Properties -> Build targets, and for every build target on the left, find the drop-down menu on the right next to "Type:" and change it from "Console Application" to "GUI Application". (You don't have to, but it's a good idea to do so.)
  • Go to Project -> Build options -> Compiler Settings.
  • Under Compiler Flags, make sure that everything is unchecked.
  • Under Other Options, type in (put it all in one line)
-w -m32 -std=c99 -mincoming-stack-boundary=2 -D_POSIX_C_SOURCE=200112L -DLUACONSOLE -DGRAVFFT
-D_GNU_SOURCE -DWIN32 -DPTW32_STATIC_LIB -O3 -ffast-math -ftree-vectorize -funsafe-math-optimizations
-march=native -mtune=native -DX86 -DX86_SSE2 -msse2
  • Go to the Search Directories tab at the top of the build options window.
  • Under the Compiler tab, click Add, and browse to and add the "includes" folder of the source to the list. (It should be okay to leave it as a relative path, but if you get a bunch of errors about various .h files not being found, try using the full path of the includes folder.)
  • Under the Linker tab, click Add, and add the "lib" folder of the source to the list. (as with the includes folder, you may or may not have to use the full path of the lib folder.)
  • Now go to the Linker Settings tab at the top of the build options window.
  • Under "Other Linker Options", type in (again, have it all in one line)
-s -static -lmingw32 -lregex -lpthreadGC2 -lws2_32 -lSDLmain -lSDL -luser32 -lgdi32 -lwinmm -lfftw3f
-lm -lbz2 -llua5.1 -mwindows
  • Hit OK at the very bottom.

Compiling

  • Press Ctrl+F9 in your keyboard to compile.
  • If you get errors about undefined references to '__chkstk_ms', your version of MinGW is too old. Try installing MinGW as described in the "MinGW Preparation" section above.
  • If compilation fails in any other way, try removing -DGRAVFFT from the compiler options and -lfftw3f from the linker options.
  • If you still can't get it to compile, post in the forums with a pastebin of your error(s).
  • If it compiles continue to the element coding tutorial.