|
From: Marcio H. <sem...@it...> - 2006-03-20 10:32:53
|
I want to suggest a naming rule for gcc libraries: static library -> libNAME.a dynamic library -> libNAME.dll.a where: - static library is an archive with a set of routines/functions. - dynamic library will link routine/function calls to NAME.dll file. a bad example: -libopengl32.a will link to opengl32.dll and have a static library name. |