home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / CLIPB51.ZIP / C5P78.EXE / README.DOC < prev    next >
Encoding:
Text File  |  1990-05-31  |  2.9 KB  |  99 lines

  1.   Notes, Clipper 5.0 Pre-Release version
  2.  
  3.  
  4. o Performance:
  5.  
  6.   Pre-Release versions are not suitable for performance
  7.   evaluation.
  8.  
  9.  
  10. o Unsupplied:
  11.  
  12.   The following standard commands are not supplied in this
  13.   version: SORT, JOIN, TOTAL, UPDATE, REPORT, LABEL.
  14.  
  15.   Commands containing the TO PRINT or TO FILE clauses will
  16.   not compile properly with this version.
  17.  
  18.   The following database drivers are not supplied in this
  19.   version: DBFNDX, SDF, DELIM
  20.  
  21.   Because the SDF and DELIM drivers are not available,
  22.   applications that use the COPY SDF, COPY DELIMITED,
  23.   APPEND SDF or APPEND DELIMITED commands will produce
  24.   one or more unresolved external errors during linking.
  25.   The related external names are:
  26.  
  27.   __DBCOPYSD    (COPY SDF)
  28.   __DBCOPYDE    (COPY DELIMITED)
  29.   __DBAPPSDF    (APPEND SDF)
  30.   __DBAPPDEL    (APPEND DELIMITED)
  31.  
  32.   Applications which list these externals as unresolved
  33.   will still execute properly, but the SDF and DELIMITED
  34.   commands will fail.
  35.  
  36.  
  37. o Library composition:
  38.  
  39.   Please keep in mind that the CLIPPER.LIB and EXTEND.LIB
  40.   supplied are not in their final form.  In particular,
  41.   library dependencies exist which cause modules to be
  42.   linked even if the application does not require them.
  43.   This is intentional.
  44.  
  45.   The 5.0 compiler automatically requests the linker to
  46.   search both CLIPPER.LIB and EXTEND.LIB for unresolved
  47.   externals.  These requests can be suppressed using the
  48.   /R flag when compiling.
  49.  
  50.  
  51. o Debugger:
  52.  
  53.   The Pre-Release debugger is supplied in library form (not
  54.   as a separate executable as described in the pre-release
  55.   documentation).  To use the debugger, specify the /B
  56.   compiler option when compiling the modules to be
  57.   debugged.  When linking, specify the library CLD.LIB to
  58.   the linker.
  59.  
  60.   Example:
  61.  
  62.     clipper myprog /B
  63.     rtlink file myprog lib cld
  64.  
  65.   Programs compiled with /B but linked without CLD.LIB
  66.   will product an unresolved external ("DEBUGGER") during
  67.   linking.  This message can be ignored.
  68.  
  69.   Note:  when linking CLD.LIB in a link that uses a .PLL,
  70.   the .PLL must REFER to the special symbol _VDBG.  See
  71.   the supplied linker script file.
  72.  
  73.  
  74. o CLIPPER environment variable:
  75.  
  76.   The 'Vnnn' parameter has been eliminated.  5.0 manages
  77.   this memory dynamically.
  78.  
  79.   The 'Rnnn' parameter has been eliminated.  5.0 manages
  80.   this memory dynamically.
  81.  
  82.   The 'Xnnn' parameter is ignored.  This is temporary.
  83.  
  84.   The 'Sn' parameter is ignored.  5.0 will provide "snow
  85.   prevention" via a user-callable function rather than
  86.   through the environment.
  87.  
  88.  
  89. o 3rd party libraries:
  90.  
  91.   Libraries which follow the Clipper Extend protocol should
  92.   function normally under this release.  Some libraries
  93.   refer to undocumented Clipper (Summer87) internals.
  94.   These libraries will generally not work, since the
  95.   internals in 5.0 are different.  Nantucket is working
  96.   with 3rd party developers to bring them up to date as
  97.   soon as possible.
  98.  
  99.