Difference between revisions of "Codeblocks setup"

From The Powder Toy
Jump to: navigation, search
m (updated project file)
m (old)
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
This Guide is Old and will no longer work
 +
 +
 +
 
Author: tian110796
 
Author: tian110796
  
Line 7: Line 11:
 
Environmental variable instuctions by pilojo.
 
Environmental variable instuctions by pilojo.
  
Last modified: 01/27/2012
+
Last modified: 10/09/2012
  
  
Line 13: Line 17:
  
 
Note: This tutorial works only in Windows, but will work in Macintosh with minor changes.
 
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:'''
 +
[http://www.mediafire.com/?svpdgp8v2vw6oev 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:'''
 +
[https://www.dropbox.com/s/m5eaogaalsigjrx/TPT%20CodeBlocks%20project.zip 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  ==
 
==  MinGW Preparation  ==
* Download and Install [http://sourceforge.net/projects/mingw/files/latest/download?source=files MinGW] using the default settings (You can also install the C++ compiler if you feel like it, but it's not necessary).
+
* 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.'''
* Add <code>"C:\MinGW\bin"</code> to the PATH environment variable, without quotes.
+
* Here are two ways to install MinGW:
 +
'''First method (untested)'''
 +
* Download [http://sourceforge.net/projects/tdm-gcc/files/TDM-GCC%20Installer/Previous/1.1006.0/tdm-gcc-4.6.1.exe/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 [http://sourceforge.net/projects/mingw/files/Installer/mingw-get/mingw-get-0.5-beta-20120426-1/mingw-get-0.5-mingw32-beta-20120426-1-bin.zip/download mingw-get], which is MinGW's official command-line installer.
 +
* Extract the contents to C:\MinGW.
 +
* Add <code>"C:\MinGW\bin"</code> to the PATH environment variable, without quotes (see below if you don't know how).
 +
* Open up a command prompt window, and type <code>mingw-get install mingw-get</code>, followed by <code>mingw-get update</code>.
 +
* To install MinGW GCC 4.6.2, type <code>mingw-get install "gcc<4.7" "g++<4.7" mingw32-make gdb</code> (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.
  
(If you don't know what an environmental variable is, here is how to get to it.)
+
'''How to add MinGW to the PATH environment variable:'''
 
* 1. Go to My Computer.
 
* 1. Go to My Computer.
 
* 2. System properties/settings.
 
* 2. System properties/settings.
Line 30: Line 57:
  
 
==  Code::Blocks preparation  ==
 
==  Code::Blocks preparation  ==
* Download and Install Code::Blocks [http://prdownload.berlios.de/codeblocks/codeblocks-10.05-setup.exe here]
+
* Download and Install Code::Blocks [http://prdownload.berlios.de/codeblocks/codeblocks-10.05-setup.exe 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".
 
* In the first run, you will be asked what compiler to use. Select "MinGW" or "GNU GCC Compiler".
 
* Code::Blocks is now ready!
 
* Code::Blocks is now ready!
  
 
==  Preparing the project  ==
 
==  Preparing the project  ==
* Note: If you can't be bothered to do all of this yourself, [http://min.us/mDIQTFGOZ#1o here] is a zip file containing a project file and all necessary headers, libraries, and the source for v71.3 of The Powder Toy. For this to work, you must have MinGW GCC 4.6.1 or later installed (if you downloaded the MinGW from above, you should be fine). If you have an earlier version and/or that project file doesn't work for you, try [http://minus.com/mDIQTFGOZ#2 this one].
+
* Download [https://github.com/FacialTurd/The-Powder-Toy/zipball/master the latest source] and put it in an empty folder. Or, if you want to compile the latest stable version, look [https://powdertoy.co.uk/Download/Browse.html here].
* Download [https://github.com/FacialTurd/The-Powder-Toy/zipball/master the latest source] and put it in an empty folder.
+
* Download [https://www.dropbox.com/s/41mq5ryuk3lra3q/TPT%20MinGW%20static%20libs.zip these libraries] and extract it directly into the source folder.
* Download [http://min.us/mXxa5O8P1 these libraries] and extract it directly into the source folder.
 
 
* Open Code::Blocks.
 
* 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)
 
* 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)
Line 49: Line 75:
 
* Under Compiler Flags, make sure that everything is unchecked.
 
* Under Compiler Flags, make sure that everything is unchecked.
 
* Under Other Options, type in (put it all in one line)
 
* 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
+
  -w -m32 -std=c99 -mincoming-stack-boundary=2 -D_POSIX_C_SOURCE=200112L -DLUACONSOLE -DGRAVFFT
-DPTW32_STATIC_LIB -O3 -ffast-math -ftree-vectorize -funsafe-math-optimizations -march=native -mtune=native -DX86
+
-D_GNU_SOURCE -DWIN32 -DPTW32_STATIC_LIB -O3 -ffast-math -ftree-vectorize -funsafe-math-optimizations
-DX86_SSE2 -msse2
+
-march=native -mtune=native -DX86 -DX86_SSE2 -msse2
* If, after following all of these steps exactly, the project won't compile, try removing the -DGRAVFFT part of the above line or updating your MinGW installation.
 
  
 
* Go to the Search Directories tab at the top of the build options window.
 
* Go to the Search Directories tab at the top of the build options window.
Line 60: Line 85:
 
* Now go to the Linker Settings tab at the top of the build options window.
 
* 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)
 
* 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
+
  -s -static -lmingw32 -lregex -lpthreadGC2 -lws2_32 -lSDLmain -lSDL -luser32 -lgdi32 -lwinmm -lfftw3f
-llua5.1 -mwindows
+
-lm -lbz2 -llua5.1 -mwindows
* If you didn't add -DGRAVFFT to the compiler options, you can remove "-lfftw3f" from the above line.
 
 
* Hit OK at the very bottom.
 
* Hit OK at the very bottom.
  
 
==  Compiling  ==
 
==  Compiling  ==
* Press Ctrl+F9 in your keyboard.
+
* Press Ctrl+F9 in your keyboard to compile.
* It should compile. If not, post in [https://powdertoy.co.uk/Discussions/Categories/Topics.html?Category=5 the forums] with a [http://pastebin.com/ pastebin] of your error(s).
+
* 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 [https://powdertoy.co.uk/Discussions/Categories/Topics.html?Category=5 the forums] with a [http://pastebin.com/ pastebin] of your error(s).
 
* If it compiles continue to the [[Coding-tutorial|element coding tutorial.]]
 
* If it compiles continue to the [[Coding-tutorial|element coding tutorial.]]
  
 
[[Category:Development]]
 
[[Category:Development]]
 +
[[Category:Compiling]]

Revision as of 14:08, 31 March 2013

This Guide is Old and will no longer work


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.