Rev 15168 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{SHLIB}\alias{SHLIB}\title{Build Shared Library for Dynamic Loading}\description{Compile given source files using \code{R CMD COMPILE}, and then linkall specified object files into a shared library which can be loadedinto R using \code{dyn.load} or \code{library.dynam}.}\usage{R CMD SHLIB [options] [-o libname] files}\arguments{\item{files}{a list specifying the object files to be included in theshared library. You can also include the name of source files, forwhich the object files are automagically made from their sources.}\item{libname}{the full name of the shared library to be built,including the extension (typically \file{.so} on Unix systems). Ifnot given, the name of the library is taken from the first file.}\item{options}{Further options to control the processing, or forobtaining information about usage and version of the utility.}}\seealso{\code{\link{COMPILE}}, \code{\link{dyn.load}}, \code{\link{library.dynam}}}\keyword{utilities}