c++ - Linkage between library name at include <name.h> and libname.o -
i'm reading this site says if do:
include<name.h>
then library object has format libname.o. example, this site says library name include math.h libm.a. getting wrong here?
the naming convention name.h
, libname.a
that, convention. many libraries follow it, not all. in particular, many platforms have c library in 1 file, libc.a
, regardless of classification different headers. others have parts math library in libm.a
.
Comments
Post a Comment