Dev C++ Code Blocks

  
Dev C++ Code Blocks Rating: 3,8/5 8717 reviews
Dev

This tutorial is the first one you should read if you're using SFML with the Code::Blocks IDE, and the GCC compiler (this is the default one). It will explain how to configure your SFML projects.

Code::Blocks is a free, open-source, cross-platform C, C and Fortran IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable. Finally, an IDE with all the features you need, having a consistent look, feel and operation across platforms. Fixed the incorrectly set HTML tags (please, whoever did paste this code in there: make sure you set the correct pre type!! The only symbols that for some reason require HTML tags are the angular brackets used for include statements and for template arguments; everything else should not use HTML tags, it might just garble the output). The first thing to do is choose what kind of project to create. Code::Blocks offers a wide variety of project types, including an 'SFML project'. Don't use it! It hasn't been updated in a long time and is likely incompatible with recent versions of SFML. Instead, create an Empty project. A new version of the most widely used office IT suite. Visual C Sharp. GPLv3, no hidden costs. Runs on Linux, Mac, Windows (uses wxWidgets). Written in C. No interpreted languages or proprietary libs needed. 请问DEV C和Code Blocks+minGW是什么关系? 最近上手学习C,初学小白一枚。 咨询同学,有人推荐我直接安装DEV C,有人推荐我安装Code Blocks和minGW,不知道二者有什么区别,或者,仅以完成简单任务(不是大型的工程)作为需求,您有什么更好的建议?. Online compiler and debugger for c/c. Code, Compile, Run and Debug C program online. Write your code in this editor and press 'Run' button to compile.

First, you must download the SFML SDK from the download page.

There are multiple variants of GCC for Windows, which are incompatible with each other (different exception management, threading model, etc.). Make sure you select the package which corresponds to the version that you use. If you are unsure, check which of the libgcc_s_sjlj-1.dll or libgcc_s_dw2-1.dll files is present in your MinGW/bin folder. If MinGW was installed along with Code::Blocks, you probably have an SJLJ version.
If you feel like your version of GCC can't work with the precompiled SFML libraries, don't hesitate to build SFML yourself, it's not complicated.

You can then unpack the SFML archive wherever you like. Copying headers and libraries to your installation of MinGW is not recommended, it's better to keep libraries in their own separate location, especially if you intend to use several versions of the same library, or several compilers.

The first thing to do is choose what kind of project to create. Code::Blocks offers a wide variety of project types, including an 'SFML project'. Don't use it! It hasn't been updated in a long time and is likely incompatible with recent versions of SFML. When was the word auto-tune originate. Instead, create an Empty project. If you want to get rid of the console, in the project properties, go to the 'Build targets' tab and select 'GUI application' in the combo box instead of 'Console application'.

Dev C++ Games

Now we need to tell the compiler where to find the SFML headers (.hpp files), and the linker where to find the SFML libraries (.a files).

In the project's 'Build options', 'Search directories' tab, add:

  • The path to the SFML headers (<sfml-install-path>/include) to the Compiler search directories
  • The path to the SFML libraries (<sfml-install-path>/lib) to the Linker search directories

These paths are the same in both Debug and Release configuration, so you can set them globally for your project.

The next step is to link your application to the SFML libraries (.a files) that your code will need. SFML is made of 5 modules (system, window, graphics, network and audio), and there's one library for each of them.
Libraries must be added to the 'Link libraries' list in the project's build options, under the 'Linker settings' tab. Add all the SFML libraries that you need, for example 'sfml-graphics', 'sfml-window' and 'sfml-system' (the 'lib' prefix and the '.a' extension must be omitted).

It is important to link to the libraries that match the configuration: 'sfml-xxx-d' for Debug, and 'sfml-xxx' for Release. A bad mix may result in crashes.

When linking to multiple SFML libraries, make sure that you link them in the right order, it is very important for GCC. The rule is that libraries that depend on other libraries must be put first in the list. Every SFML library depends on sfml-system, and sfml-graphics also depends on sfml-window. So, the correct order for these three libraries would be: sfml-graphics, sfml-window, sfml-system -- as shown in the screen capture above.

The settings shown here will result in your application being linked to the dynamic version of SFML, the one that needs the DLL files. If you want to get rid of these DLLs and have SFML directly integrated into your executable, you must link to the static version. Static SFML libraries have the '-s' suffix: 'sfml-xxx-s-d' for Debug, and 'sfml-xxx-s' for Release.
In this case, you'll also need to define the SFML_STATIC macro in the preprocessor options of your project.

Starting from SFML 2.2, when static linking, you will have to link all of SFML's dependencies to your project as well. This means that if you are linking sfml-window-s or sfml-window-s-d for example, you will also have to link opengl32, winmm and gdi32. Some of these dependency libraries might already be listed under 'Inherited values', but adding them again yourself shouldn't cause any problems.

Here are the dependencies of each module, append the -d as described above if you want to link the SFML debug libraries:

ModuleDependencies
sfml-graphics-s
  • sfml-window-s
  • sfml-system-s
  • opengl32
  • freetype
sfml-window-s
  • sfml-system-s
  • opengl32
  • winmm
  • gdi32
sfml-audio-s
  • sfml-system-s
  • openal32
  • flac
  • vorbisenc
  • vorbisfile
  • vorbis
  • ogg
sfml-network-s
  • sfml-system-s
  • ws2_32
sfml-system-s
  • winmm

You might have noticed from the table that SFML modules can also depend on one another, e.g. sfml-graphics-s depends both on sfml-window-s and sfml-system-s. If you static link to an SFML library, make sure to link to the dependencies of the library in question, as well as the dependencies of the dependencies and so on. If anything along the dependency chain is missing, you will get linker errors.

Additionally, because Code::Blocks makes use of GCC, the linking order does matter. This means that libraries that depend on other libraries have to be added to the library list before the libraries they depend on. If you don't follow this rule, you will get linker errors.

If you are slightly confused, don't worry, it is perfectly normal for beginners to be overwhelmed by all this information regarding static linking. If something doesn't work for you the first time around, you can simply keep trying always bearing in mind what has been said above. If you still can't get static linking to work, you can check the FAQ and the forum for threads about static linking.

Dev C++ Code Blocks

Examples

Dev C++ Code Examples

If you don't know the differences between dynamic (also called shared) and static libraries, and don't know which one to use, you can search for more information on the internet. There are many good articles/blogs/posts about them.

Your project is ready, let's write some code now to make sure that it works. Add a 'main.cpp' file to your project, with the following code inside:

Which Is Better Dev C++ Or Code Blocks

Compile it, and if you linked to the dynamic version of SFML, don't forget to copy the SFML DLLs (they are in <sfml-install-path/bin>) to the directory where your compiled executable is. Run it, and if everything works you should see this:

If you are using the sfml-audio module (regardless whether statically or dynamically), you must also copy the DLL of the external library needed by it, which is OpenAL32.dll.
These files can be found in <sfml-install-path/bin> too.