09.01.2021»»суббота

How Dev C++ Works

09.01.2021
  • Whether you are designing a C application, implementing new features for it, trying to address bugs (especially certain strange bugs), or trying to make C and C code work together, knowing how compilation and linking works will save you a lot of time and make those tasks much more pleasant. In this article, you will learn exactly that.
  • Jul 16, 2009  These notes explain how to compile programs written in ANSI C with OpenGL and GLUT using the Dev-C compiler. Bloodshed Dev-C is a free C compiler and development environment for Windows operating systems. Like most C compilers, it also can be used to compile ANSI C.

Dev-C++ is an advanced, freely distributed integrated development environment for Windows, created by Bloodshed Software. It is based on the MinGW implementation of GCC. A similar IDE, Dev-Pascal, is available and works with both Free Pascal and GNU Pascal.

How to use Dev-C Introduction Dev-C is a full-featured integrated development environment (IDE), which is able to create Windows or DOS-based C/C programs using the Mingw compiler system (included with the package), or the Cygwin compiler.

C++

Perhaps the greatest feature of Dev-C++ for OSDev purposes is that it can be used with the Cygwin toolset as well as (or instead of) the MinGW one.

The last update to Dev-C++ from Bloodshed Software was made in 2005. However, in June 2011 Dev-C++ was forked by Orwell to continue its development and since that time several bugs were fixed and new features added.

There is also wxDev-C++, a Dev-C++ fork specifically targetted at users developing with the wxWidgets framework.

Using Cygwin with Dev-C++

It is possible to use a full (not minimalistic) GCC compiler with Dev-C++ by using Cygwin. To do this, you have to edit some settings of the IDE:

  1. Go to Tools -> Compiler Options.
  2. Go to the Directories tab, then add the appropriate Cygwin paths.
  3. You can use a custom Makefile by going to Project -> Project Options, selecting the Makefile tab and replacing the Makefile.

A more detailed and illustrated tutorial can be found at [1]. /auto-tune-in-abelton-live.html.

See Also

Dev C++ Download And Install

External Links

Dev C++ Programs

Retrieved from 'https://wiki.osdev.org/index.php?title=Dev-C%2B%2B&oldid=19826'