Static, Shared Dynamic and Loadable Linux Libraries
http://www.yolinux.com/TUTORIALS/LibraryArchives-StaticAndDynamic.html
Linux C++ library types:
1. Static libraries(.a): Library of object code which is linked with, and becomes part of the application.
2. Dynamically linked shared object libraries (.so)
1) Dynamically linked at run time but statically aware. The libraries must be available during compile/link phase. The shared objects are not included into the executable component but are tied to the execution.
2) Dynamically loaded/unloaded and linked during execution(i.e. browser plug-in) using the dynamic linking loader system functions.
Program Library HOWTO
http://tldp.org/HOWTO/Program-Library-HOWTO/
Linux Man Page & Linux Doc
The Linux Documentation Project
CMake Useful Variables
http://cmake.org/Wiki/CMake_Useful_Variables
1. CMAKE_C_FLAGS / CMAKE_CXX_FLAGS: The compiler flags for compiling C/C++ sources. Can also specify switches with ADD_DEFINITIONS().
2. CMake_SHARED_LINKER_FLAGS: Additional compiler flags for building shared libraries.
set (CMAKE_SHARED_LINKER_FLAGS "-W1, --no-undefined"): Make linker report any unresolved symbols from object files.
Gcc Online doc
http://gcc.gnu.org/onlinedocs/gcc/
GNU Compiler Collection and toolchains
http://www.acsu.buffalo.edu/~charngda/cc.html
Using the GNU Compiler Collection (GCC)
http://www.delorie.com/gnu/docs/gcc/gcc_toc.html#SEC_Contents
金步国作品列表
http://lamp.linux.gov.cn/jinbuguo_florilegium.html
GCC编译优化指南
http://lamp.linux.gov.cn/Linux/optimize_guide.html
C 语言常见问题集
http://c-faq-chn.sourceforge.net/ccfaq/ccfaq.html