SHLIB                 package:utils                 R Documentation

_B_u_i_l_d _S_h_a_r_e_d _L_i_b_r_a_r_y _f_o_r _D_y_n_a_m_i_c _L_o_a_d_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     Compile given source files using 'R CMD COMPILE', and then link
     all specified object files into a shared library which can be
     loaded into R using 'dyn.load' or 'library.dynam'.

_U_s_a_g_e:

     R CMD SHLIB [options] [-o libname] files

_A_r_g_u_m_e_n_t_s:

   files: a list specifying the object files to be included in the
          shared library.  You can also include the name of source
          files, for which the object files are automagically made from
          their sources.

 libname: the full name of the shared library to be built, including
          the extension (typically '.so' on Unix systems).  If not
          given, the name of the library is taken from the first file.

 options: Further options to control the processing, or for obtaining
          information about usage and version of the utility.

_S_e_e _A_l_s_o:

     'COMPILE', 'dyn.load', 'library.dynam'

