What is the purpose of the /lib/libgcc_s.so.1 library?

In FreeBSD Clang has the following dynamic object dependencies:
Code:
# ldd /usr/bin/clang | grep gcc
libgcc_s.so.1 => /lib/libgcc_s.so.1
Despite numerous mentions of this library, I still could not understand what the true purpose of this library is in FreeBSD? Why does Clang depend on this library? Could someone explain in simple terms (or provide a link to the documentation).
 
Back
Top