Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 961 Bytes

Install build-essentials.md

File metadata and controls

18 lines (14 loc) · 961 Bytes

Install build-essentials

Based on the documentation provided in the official repository of dev-tld-resolver it is an open source linux package built using C.

We use make command to build the application from its source code. And the make command is one of the five packages found inside a meta package called build-essentials.

How to install build essentials on ubuntu

Install any pending updates for your existing packages with the update and upgrade commands:

sudo apt update && sudo apt upgrade -y

To install build-essentials, you can use the following command:

sudo apt install build-essential

Intalling build-essential meta package will install dpkg-dev, make, libc6-dev and gcc/g++ packages.

Finally, install dev-tld-resolver based on the Installation section on the README of its GitHub repository.