본문 바로가기

Software

GNU C library(glibc) 와 C library(libc)와의 관계

+ Overview

Any Unix-like operating system needs a C library: the library which defines the ``system calls'' and other basic facilities such as open, malloc, printf, exit...
The GNU C library is used as the C library in the GNU system and most systems with the Linux kernel.


: Linux system에서 사용하는 C library가 GNU C library


+ History

The history of Unix and various standards determine much of the interface of the C library. In general the GNU C library supports the ISO C and POSIX standards. We also try to support the features of popular Unix variants (including BSD and System V) when those do not conflict with the standards. Different compatibility modes (selectable when you compile an application) allow the peaceful coexistence of compatibility support for different varieties of Unix.


: GNU C library는 C library외에도 ISO C와 POSIX(따라서 pthread까지)표준까지 지원하고 추가적으로 다른 변종들(BSD, System V)까지 지원할 수 있다.


glibc 는 http://ftp.gnu.org/gnu/glibc/ 에서 다운가능
출처 : http://www.gnu.org/software/libc/

반응형