Skip to main content

C & C++

Build Environment

glibc is a GNU implementation of the C standard library, and it is the default C library for many Linux distributions.
but glibc is too large and complex.
musl is a lightweight, fast, and simple C standard library. (alpine linux uses musl)

GCC

sudo apt-get install gcc

G++

sudo apt-get install g++

Musl

sudo apt-get install musl-dev musl-tools