Linker and Libraries Guide

Building a Static Executable

The use of static executables is limited. Static executables usually contain platform-specific implementation details which restricts the ability of the executable to be run on an alternative platform. Also, many implementations of Solaris libraries depend on dynamic linking capabilities, such as dlopen(3X) and dlsym(3X). (See "Loading Additional Objects".) These capabilities are not available to static executables.


$ cc -dn -o prog file1.o file2.o file3.o .....

Note -

The -a option is available to indicate the creation of a static executable; however, the use of -dn without a -r implies -a.