home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / TCRTL.DOC < prev    next >
Encoding:
Text File  |  1990-06-07  |  20.7 KB  |  511 lines

  1.   TURBO C RUNTIME LIBRARY SOURCE CODE 3.0 DOCUMENTATION
  2.   ─────────────────────────────────────────────────────
  3.  
  4.   Please read this document carefully. It contains information
  5.   on how to install the Turbo C++ Runtime Library source files, an
  6.   overview of what the Runtime Library contains, instructions
  7.   for modifying Runtime Library files, and Borland's licensing
  8.   agreement.
  9.  
  10.   TABLE OF CONTENTS
  11.   ─────────────────
  12.  
  13.   1.  Installing Library Sources
  14.   2.  Runtime Library Overview
  15.   3.  Modifying Library Files
  16.   4.  License Agreement
  17.   5.  More information on the batch files
  18.  
  19.   1. INSTALLING LIBRARY SOURCES
  20.   ─────────────────────────────
  21.  
  22.   The following diagram shows the recommended directory structure
  23.   for the libraries on a hard disk. This is also the directory
  24.   structure created by the hard disk installation program, INSTALL.
  25.   Most of the batch files that build the RTL files (except
  26.   CLIPREPL.BAT and MATHREPL.BAT) assume this directory structure.
  27.  
  28.   In the diagram, and in the text that follows, we assume that
  29.   you have installed the RTL directory structure in a
  30.   subdirectory named \TCRTL. If you have put the RTL
  31.   directory structure in a subdirectory other than \TCRTL,
  32.   simply substitute the path to that directory wherever
  33.   \TCRTL appears.
  34.  
  35.   RECOMMENDED LIBRARY DIRECTORY STRUCTURE
  36.   ───────────────────────────────────────
  37.  
  38.   \TCRTL               library root directory
  39.   \TCRTL\INCLUDE       library header files    (INCLUDE.ZIP)
  40.   \TCRTL\CLIB          general library sources (CLIB1.ZIP,CLIB2.ZIP)
  41.   \TCRTL\CLIB\SMALL    general object files: small model
  42.   \TCRTL\CLIB\COMPACT  general object files: compact model
  43.   \TCRTL\CLIB\MEDIUM   general object files: medium model
  44.   \TCRTL\CLIB\LARGE    general object files: large model
  45.   \TCRTL\CLIB\HUGE     general object files: huge model
  46.   \TCRTL\MATH          math library sources (MATH.ZIP)
  47.   \TCRTL\MATH\OBJ      math object files: model-independent
  48.   \TCRTL\MATH\SMALL    math object files: small model
  49.   \TCRTL\MATH\COMPACT  math object files: compact model
  50.   \TCRTL\MATH\MEDIUM   math object files: medium model
  51.   \TCRTL\MATH\LARGE    math object files: large model
  52.   \TCRTL\MATH\HUGE     math object files: huge model
  53.   \TCRTL\EMU           floating point initialization. (FPINIT.ASM)
  54.  
  55.   To install the library source files on your hard disk, insert
  56.   the library source distribution disk 1 in your floppy drive, and
  57.   enter the following command at the DOS prompt:
  58.  
  59.     A:INSTALL
  60.  
  61.   The INSTALL program will default to the library directories as shown
  62.   above and extract the source and header/include files, placing them
  63.   in the appropriate directories. It will also extract several batch
  64.   files that may be used to recompile and/or rebuild the C and MATH 
  65.   libraries. It is a good idea to have a look at these batch files, 
  66.   to see how the C and MATH files are compiled and how the libraries 
  67.   are built.
  68.  
  69.   The following batch files will be placed in \TCRTL\CLIB and
  70.   \TCRTL\MATH (replace the * with either CLIB or MATH, depending
  71.   on the library):
  72.  
  73.     *.BAT     - Compiles and assembles ALL modules in the library
  74.                 for the given memory model.
  75.  
  76.     *RCMP.BAT - Compiles (or assembles) a given module for the
  77.                 given memory model.
  78.  
  79.     *RLIB.BAT - Rebuilds the libraries for the given model from
  80.                 object files built by *.BAT or *RCMP.BAT.
  81.  
  82.     *REPL.BAT - Compiles/assembles a given module for a given memory
  83.                 model and replaces it in the C*.LIB or MATH*.LIB
  84.                 libraries.
  85.  
  86.   For usage information and an example, see section 5 or enter the
  87.   name of the batch file without any parameters.
  88.  
  89.   These batch files assume the recommended directory structure. If
  90.   you aren't using the recommended directory structure, the *REPL.BAT
  91.   batch files can still be used. They need to be able to find
  92.   your library file in which to replace the module.
  93.  
  94.   If you choose to compile or assemble a module without using the
  95.   batch files, be aware that certain files need special switches.
  96.   Make sure to check both the configuration and batch files to find
  97.   the necessary switches.
  98.  
  99.  
  100.   2. RUNTIME LIBRARY OVERVIEW
  101.   ───────────────────────────
  102.  
  103.   Some of the library routines require .H files from Turbo C++,
  104.   and you'll also need TLIB, the object file librarian.  You will
  105.   need to modify the TURBOC.CFG file in both the CLIB and MATH 
  106.   subdirectories to specify where your Turbo C++ header (.H) files 
  107.   are located.
  108.  
  109.   The runtime libraries are blocks of object code grouped
  110.   together in several library files.  These library files contain
  111.   the general library routines and the standard math routines.
  112.  
  113.   FPINIT.ASM is provided to allow you to modify the floating-point
  114.   initialization and termination process.  If you used the installation 
  115.   batch file, this file will be found in a subdirectory called EMU. 
  116.   The CLIB* and MATH* batch files will not work with this file. 
  117.   FPINIT.ASM is used to create two OBJ files, one for the emulator 
  118.   (FPINIT.OBJ) and one for inline 8087 instructions (FP87INIT.OBJ).
  119.   The following command lines will create these two files from the
  120.   EMU subdirectory.
  121.   
  122.   TASM /MX /t /z fpinit
  123.   TASM /MX /t /z /DFP87 fpinit, fp87init
  124.   
  125.   Most of the modules contained in the runtime libraries are
  126.   object files produced by compiling the library source files
  127.   with the Turbo C++ compiler.  Some of the files contain inline
  128.   assembly language code; therefore you will need a TASM 2.0
  129.   (or compatible) Macro Assembler to compile those source files.
  130.   Finally, a few modules are written entirely in assembly language.
  131.  
  132.   Here is a key to some of the file extensions found in the RTL:
  133.  
  134.      .C   - C source file
  135.      .H   - C header file
  136.      .CAS - C source file with inline assembler
  137.      .ASM - Assembler source file
  138.      .ASI - Include file needed for .ASM files
  139.      .CFG - Configuration files for Turbo C++ and Turbo Assembler.
  140.      .RSP - TLIB response file. Contains a list of all
  141.             files for a given library
  142.      .ZIP - Archive file
  143.  
  144.   The library source files have been grouped together into several
  145.   "archive" files (.ZIP extensions). An archive file contains a
  146.   collection of files in a compressed form. You use the UNZIP
  147.   utility to extract files from the archive. Here is the usage
  148.   information for UNZIP:
  149.  
  150.   Usage: UNZIP [options] zipfile [destpath] [files...]
  151.  
  152.   Options:
  153.   /o = overwrite existing files         /v = verbose listing of archive(s)
  154.   /c = extract file(s) to the console   /p = extract file(s) to the printer
  155.   /t = test archive integrity
  156.  
  157.   zipfile    Archive file name, wildcards *,? ok.  Default extension is .ZIP
  158.   destpath   Destination for extracted files.
  159.   files      Name(s) of files to extract.  Wildcards *,? ok.
  160.              Default is ALL files.
  161.  
  162.   Examples:
  163.     UNZIP CLIB1                     - Unpack all files in CLIB1 to
  164.                                        current drive and directory.
  165.     UNZIP MATH C:\TCRTL\MATH        - Unpack all files in MATH.ZIP to
  166.                                        C:\LIBRARY\MATH directory.
  167.     UNZIP CLIB2 C: *.CPP *.CAS      - Unpack all .CPP and .CAS files in
  168.                                        CLIB2.ZIP to drive C.
  169.  
  170.  
  171.   3. MODIFYING LIBRARY FILES
  172.   ──────────────────────────
  173.  
  174.   This section describes how to modify a source module, compile
  175.   or assemble it, and replace it in a library. If you have
  176.   installed the source using INSTALL, there are several batch
  177.   files included to make your job easier; see section 5 for more
  178.   information.
  179.  
  180.   You can modify a library file by first changing the
  181.   corresponding source file, compiling (or assembling) the
  182.   modified source file into an object file, and finally either
  183.   replacing the changed object file in the appropriate library
  184.   file(s) or rebuilding the library files from scratch. The
  185.   latter method is somewhat slower and requires the presence of
  186.   all the object modules that comprise a given library. This
  187.   method may be preferable, however, when many modules have been
  188.   changed or when you have lost track of which files have been
  189.   modified.
  190.  
  191.   In order to compile most of the library source files, the
  192.   standard header files and the library header files (contained
  193.   in INCLUDE.ZIP) #included in most of the C source files must be
  194.   present on your system. They must be made available to Turbo C++
  195.   through the -I option.
  196.  
  197.   The following steps are recommended for modifying a library
  198.   module. You might want to modify all the modules you need, then
  199.   rebuild the library (or libraries) from scratch. (Note: If you have
  200.   installed all the source files on a hard disk using the installation
  201.   procedure described in section 1, you may be able to skip some
  202.   of the following steps.)
  203.  
  204.   A. Figure out which module you need to modify, and to which
  205.      library file(s) it belongs.
  206.  
  207.      The library listing feature of TLIB will be helpful here,
  208.      since it shows all the modules in a library file, together
  209.      with all the functions that the modules define. Use "tlib
  210.      lib-name,con" or "tlib lib-name,listfile-name."
  211.  
  212.      Note that the general routine libraries (CS.LIB, CC.LIB,
  213.      CM.LIB, CL.LIB, and CH.LIB) all contain the same set of
  214.      modules, compiled for different memory models; likewise for
  215.      the math routine libraries (MATHS.LIB, MATHC.LIB, MATHM.LIB,
  216.      MATHL.LIB, and MATHH.LIB).
  217.  
  218.   B. If you haven't done so already, extract the source file from
  219.      the appropriate archive file using UNZIP, and place it in your
  220.      working directory (for example, UNZIP A:CLIB2 CRTINIT.CAS).
  221.  
  222.      If you have not run INSTALL, unzip the header files from 
  223.      INCLUDE.ZIP and place them in either your working directory 
  224.      or the directory where you keep the standard C header files. 
  225.      Better yet install them in a separate subdirectory and add that
  226.      subdirectory to the list of include subdirectories for TC or
  227.      TCC. For example, to extract the header files and put them
  228.      in \TCRTL\INCLUDE, do the following:
  229.  
  230.      1. Create the directory, if it is not already present, like
  231.         this:
  232.  
  233.            MKDIR   \TCRTL\INCLUDE
  234.  
  235.      2. Extract all files from INCLUDE.ZIP:
  236.  
  237.            UNZIP  A:INCLUDE  \TCRTL\INCLUDE
  238.  
  239.      If you did not run INSTALL, you also need to unzip the
  240.      configuration files from CLIB2.ZIP and MATH.ZIP into their 
  241.      respective directories and modify them to include the directory
  242.      for your Turbo C++ header files.  For example:
  243.  
  244.      1. Extract the configuration files:
  245.  
  246.            UNZIP  A:CLIB2  \TCRTL\CLIB  *.cfg
  247.            UNZIP  A:MATH   \TCRTL\MATH  *.cfg
  248.  
  249.      2. Add the Turbo C++ include directory (assuming \TC\INCLUDE) to 
  250.         both TURBOC.CFG files:
  251.  
  252.            Edit TURBOC.CFG and add  -I\TC\INCLUDE 
  253.            
  254.  
  255.   C. Apply and test all the changes you need to make.
  256.  
  257.      To test a C library module, write a simple testing program,
  258.      and compile and link both modules at the same time; for
  259.      example:
  260.  
  261.            TCC  [options]  tsrchp  searchp.cas
  262.  
  263.      That way you make sure the tested module will not be linked
  264.      in from the library.
  265.  
  266.      For an assembler file, assemble the library file, then link
  267.      it with a test file using TCC; for example:
  268.  
  269.        TASM lrsh /MX;
  270.  
  271.        TCC  [options]  tstshf  lrsh.obj
  272.  
  273.   D. Recompile the module and replace it in the library file(s).
  274.  
  275.      Two batch files are provided on the distribution disk to
  276.      help with recompiling and replacing modules. These files
  277.      will work even if you haven't installed the source with
  278.      INSTALL.
  279.  
  280.      CLIBREPL.BAT - Compiles/assembles a given module for a given
  281.                     memory model and replaces it in the appropriate
  282.                     Cx.LIB library.
  283.  
  284.      MATHREPL.BAT - Compiles/assembles a given module for a given
  285.                     memory model and replaces it in the appropriate
  286.                     MATHx.LIB library.
  287.  
  288.      For usage information and an example, see section 5 or enter
  289.      the name of the batch file without any parameters.
  290.  
  291.      If you are using a floppy-based system, don't use these
  292.      batch files. At this point, it's easier just to update the
  293.      library with the .OBJ file. Remember, TLIB creates a backup
  294.      of the library file, so make sure you have plenty of space.
  295.  
  296.   4. LICENSE AGREEMENT
  297.   ────────────────────
  298.  
  299.   Turbo C++ Runtime Library Souce Code
  300.   Borland's No-Nonsense License Agreement
  301.  
  302.   Borland International, Inc. (Borland) is offering you a license
  303.   to the source code to the Turbo C++ Runtime Library portion of
  304.   Turbo C++ (the Source Programs), including updates that may later
  305.   be supplied by Borland at additional cost, but not including the
  306.   source code of the 8087 emulator or the graphics library.
  307.  
  308.   The Source Programs are protected by both United States copyright
  309.   law and international treaty provisions. Therefore, you must
  310.   treat the Source Programs just like a book, with the following
  311.   single exception:  Borland authorizes you to make archival copies
  312.   of the Source Programs for the sole purpose of backing-up your
  313.   programs and protecting your investments from loss.
  314.  
  315.   By "just like a book," Borland means, for example, that the Source
  316.   Programs may be used by any number of people and may be freely
  317.   moved from one computer workstation to another, so long as there
  318.   is no possibility of them being used at one computer workstation
  319.   at the same time they are being used at another. Just as a book
  320.   can't be read by two different people in two different places at
  321.   the same time, neither can the Source Programs be used by two
  322.   different people in two different places at the same time. (Unless,
  323.   of course, Borland's copyright has been violated.)
  324.  
  325.   You may modify the Source Programs, but the modified source code,
  326.   regardless of the extent of the modifications, shall always remain
  327.   Borland's source code. You may not remove or modify Borland's
  328.   copyright and other proprietary copyright notices, and you may not
  329.   transport any of the Source Programs to another computer operating
  330.   system or environment. You are responsible for all claims,
  331.   liability, and damages arising from your own modifications and the
  332.   products which include them.
  333.   
  334.   You may use the Source Programs to support your licensed copies of
  335.   Turbo C++. This means you may include all or some of the original or
  336.   modified Source Programs routines in your own Turbo C++ based
  337.   programs, but you may only distribute binary copies of such routines
  338.   when linked into your executable programs. You may not distribute
  339.   any source code for the original or modified Turbo C++ Runtime
  340.   Library under any circumstances. You are not, of course, restricted
  341.   from distributing your own source code.
  342.  
  343.   All rights not specifically granted in this license are reserved
  344.   by Borland.
  345.  
  346.   5. MORE INFORMATION ON THE BATCH FILES
  347.   ──────────────────────────────────────
  348.  
  349.   The following descriptions are of various batch files you
  350.   may find useful when modifying the library source files. All but
  351.   the last two assume that you have installed the sources by using
  352.   INSTALL. This information can also be found by entering the
  353.   name of the batch file without any parameters.
  354.  
  355.   Note that CLIB.BAT, CLIBREPL.BAT, and CLIBRLIB.BAT invoke TLIB with
  356.   the /0 option and that MATH.BAT, MATHREPL.BAT, and MATHRLIB.BAT invoke 
  357.   TLIB with the /E /0 options. If you want to build one or more library 
  358.   files to include debugging information (so that you can step through 
  359.   library calls with TC or TD), you have to remove both the /E and /0 
  360.   options from the TLIB command line(s), as these options effectively 
  361.   remove all debugging information from library files.
  362.  
  363.   CLIB.BAT
  364.   ────────
  365.  
  366.   This batch file will recompile all the CLIB library files for the
  367.   specifed memory model, placing the resultant object files in the
  368.   appropriate directory (SMALL, COMPACT, MEDIUM, LARGE, or HUGE). 
  369.   The library file can then be built from these object files using 
  370.   the CLIBRLIB batch file.
  371.  
  372.   The "model" parameter specifies which memory model should be used.
  373.   When ALL is specified, the library is recompiled for all memory models.
  374.  
  375.   Usage:    clib  model   [tcc options]
  376.  
  377.   Examples: clib  ALL     -I\tc\include
  378.             clib  LARGE   -I.  -N  -u-
  379.             clib  MEDIUM
  380.  
  381.   Note that recompiling all the source files using this batch file
  382.   may take a considerable amount of time.
  383.  
  384.   CLIBRCMP.BAT
  385.   ────────────
  386.  
  387.   This batch file will recompile the specified source file for
  388.   the selected memory model, and place the resultant object file
  389.   in the SMALL, COMPACT, MEDIUM, LARGE, or HUGE subdirectory
  390.   (for use with CLIBRLIB.BAT).
  391.  
  392.   The "model" parameter specifies which memory model should be used.
  393.   When ALL is specified, the file is recompiled for all memory models.
  394.  
  395.   Usage:    clibrcmp   model   filename  extension  [TCC or TASM switches]
  396.  
  397.   Examples: clibrcmp   ALL     screen    cas
  398.             clibrcmp   HUGE    fopen     c          -N
  399.             clibrcmp   LARGE   setargv   asm
  400.  
  401.   CLIBRLIB.BAT
  402.   ────────────
  403.  
  404.   This batch file rebuilds the specified CLIB library file from
  405.   the object files contained in the SMALL, COMPACT, MEDIUM, LARGE,
  406.   or HUGE subdirectories.
  407.  
  408.   The "model" parameter specifies which memory model library file
  409.   should be rebuilt. When ALL is specified, all five library files
  410.   will be rebuilt.
  411.  
  412.   Usage:    clibrlib   model
  413.  
  414.   Examples: clibrlib   ALL
  415.             clibrlib   LARGE
  416.  
  417.   MATH.BAT
  418.   ────────
  419.  
  420.   This batch file will recompile all the MATH library files for the
  421.   specifed memory model, placing the resultant object files in the
  422.   appropriate directory (OBJ and SMALL, COMPACT, MEDIUM, LARGE, or
  423.   HUGE). The library file can then be built from these object files
  424.   using the MATHRLIB batch file.
  425.  
  426.   The "model" parameter specifies which memory model should be used.
  427.   When ALL is specified, the library is recompiled for all memory models.
  428.  
  429.   Usage:    math  model   [tcc options]
  430.  
  431.   Examples: math  ALL     -I\tc\include
  432.             math  LARGE   -I.  -p  -N
  433.             math  MEDIUM
  434.  
  435.   Note that recompiling all the source files using this batch file
  436.   may take a considerable amount of time.
  437.  
  438.   MATHRCMP.BAT
  439.   ────────────
  440.  
  441.   This batch file will recompile the specified source file for
  442.   the selected memory model, and place the resultant object file
  443.   in the SMALL, COMPACT, MEDIUM, LARGE, or HUGE subdirectory
  444.   (for use with MATHRLIB.BAT).
  445.  
  446.   The "model" parameter specifies which memory model should be used.
  447.   When ALL is specified, the file is recompiled for all memory models.
  448.  
  449.   Usage:    mathrcmp   model   filename  extension  [TCC or TASM switches]
  450.  
  451.   Examples: mathrcmp   ALL     realcvt   cas
  452.             mathrcmp   LARGE   gcvt      c          -N
  453.  
  454.   MATHRLIB.BAT
  455.   ────────────
  456.  
  457.   This batch file rebuilds the specified MATH library file from
  458.   the object files contained in the OBJ and SMALL, COMPACT, MEDIUM,
  459.   LARGE, or HUGE subdirectories.
  460.  
  461.   The "model" parameter specifies which memory model library file
  462.   should be rebuilt. When ALL is specified, all five library files
  463.   will be rebuilt.
  464.  
  465.   Usage:    mathrlib   model
  466.  
  467.   Examples: mathrlib   ALL
  468.             mathrlib   LARGE
  469.  
  470.   The last two batch files do not require any special directory setup.
  471.  
  472.   CLIBREPL.BAT
  473.   ────────────
  474.  
  475.   This batch file will recompile the specified module for the
  476.   selected memory model, and replace the resultant object module
  477.   in the SMALL, COMPACT, MEDIUM, LARGE, or HUGE library file
  478.   in the specified library directory.
  479.  
  480.   The "model" parameter specifies which memory model should be used.
  481.   When ALL is specified, the file is recompiled and replaced for all
  482.   memory models.
  483.  
  484.   Usage:    clibrepl   model   filename  ext  lib-dir  [switches]
  485.  
  486.   Examples: clibrepl   ALL     screen    cas  \tc\lib  -N
  487.             clibrepl   MEDIUM  setargv   asm  \tc\lib
  488.  
  489.   Note that you should not include the trailing "\" in the destination
  490.   library directory specification.
  491.  
  492.   MATHREPL.BAT
  493.   ────────────
  494.  
  495.   This batch file will recompile the specified module for the
  496.   selected memory model, and replace the resultant object module
  497.   in the SMALL, COMPACT, MEDIUM, LARGE, or HUGE library file
  498.   in the specified library directory.
  499.  
  500.   The "model" parameter specifies which memory model should be used.
  501.   When ALL is specified, the file is recompiled and replaced for all
  502.   memory models.
  503.  
  504.   Usage:    mathrepl  model  filename  extension  lib-dir      [TCC switches]
  505.  
  506.   Examples: mathrepl  ALL    realcvt   cas        \tc\lib
  507.             mathrepl  LARGE  ldexp     cas        \tc\lib  -N
  508.  
  509.   Note that you should not include the trailing "\" in the destination
  510.   library directory specification.
  511.