How To Install Dev C++ In Debian

How do I install GNU/GCC compiler and related tools (such as make, debugger, man pages) collection under Debian Linux system using command line options?
You need to install the following packages on a Debian and Ubuntu Linux:

Mar 01, 2018  In this tutorial I show you how to install C / C and NetBeans on both Windows and MacOS. I decided to use NetBeans because I think it is the. Development files for International Components for Unicode. ICU is a C and C library that provides robust and full-featured Unicode and locale support. This package contains the development files for ICU. Oct 08, 2019  Here’s how to build and install FFmpeg from source with all the bells and whistles (i.e codec support). We’ll install it as a custom Debian package using checkinstall.That way, any other package that depends on the ffmpeg package will recognize that it is already installed, and won’t try to fetch it from the Debian or Ubuntu software repositories. Get notifications on updates for this project. Get the SourceForge newsletter. Get newsletters and notices that include site news, special offers and exclusive discounts about IT products & services.


build-essential package – Installs the following collection to compile c/c++ program on Debian/Ubuntu Linux:
Advertisements
  1. libc6-dev – C standard library.
  2. gcc – C compiler.
  3. g++ – C++ compiler.
  4. make – GNU make utility to maintain groups of programs.
  5. dpkg-dev – Debian package development tools.


Basically, build-essential package contains an informational list of packages which are considered essential for building Debian packages including gcc compiler, make and other required tools. This package also depends on the packages on that list, to make it easy to have the build-essential packages installed.

How To Install Dev C++ In Debian

Installation

Open the Terminal and then type the following apt-get command as root user or use the apt command:
$ sudo apt-get update
$ sudo apt-get install build-essential

OR
$ sudo apt update
$ sudo apt install build-essential

Sample outputs:

Verify installation

You can verify gcc compiler and make tool using the following syntax:
$ whereis gcc make
$ gcc -v
$ make -v

Sample outputs:

Now, you should able to compile software, create Debian packages or simply write a code using C / C++ compilers.

Install Dev C++ Windows 10

Dev c 5.11 install

How do I install dev man pages?

Type the following command:
$ sudo apt-get install manpages-dev
Sample outputs:

Dev C++ Online

Verify installation by reading some man pages:
$ man ls
$ man printf

See also
  • Man pages: apt(8)

How To Install Debian Usb

This entry is 2 of 13 in the Linux GNU/GCC Compilers Tutorial series. Keep reading the rest of the series:
  1. Debian Linux Install GNU GCC Compiler and Development Environment

Dev Cpp Install

ADVERTISEMENTS