home *** CD-ROM | disk | FTP | other *** search
/ ftp.alstevens.com / 2014.06.ftp.alstevens.com.tar / ftp.alstevens.com / quincy2000 / INSTALL next >
Text File  |  2002-07-24  |  5KB  |  114 lines

  1. Procedures for Installing Quincy 2000 and Supporting Tools
  2.  
  3. Installing the Quincy 2000 Integrated Development Environment
  4. -----------------------------------------------------------
  5. 1. Download quincy2000exe.zip from http:\\www.alstevens.com\quincy2000\
  6.  
  7. 2. Extract the files from the zip into a folder of your choosing, for
  8.    example, c:\quincy2000\bin.
  9.  
  10.   NOTE: Use an unzip utility that works with long filenames. WinZip32 is such a
  11.   program (http://www.winzip.com).
  12.  
  13.   NOTE: The procedures that follow assume that you installed Quincy 2000 into
  14.   c:\quincy2000\bin. I recommend that you follow this convention if possible.
  15.  
  16. 3. Put a shortcut to c:\quincy2000\bin\quincy.exe on the Windows desktop or
  17.    elsewhere where you can use it to run the IDE.
  18.  
  19.  
  20. Installing the gcc-mingw32 Compiler System
  21. -------------------------------------------
  22.  
  23. 1. Download gcc-2.95.2-crtdll.exe or gcc-2.95.2-msvcrt.exe from
  24.    ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/mingw32/gcc-2.95.2/
  25.    This file is a self-extracting compressed executable.
  26.  
  27.    -- or --
  28.  
  29. 1. Download gcc-2.95.3-20010828-src.tar.gz from
  30.    http://sourceforge.net/project/showfiles.php?group_id=2435
  31.    This file is a tar.gz compressed file. You will need Winzip
  32.    to extract it. It is a more recent version of the gcc compiler
  33.    ported to the mingw platform. Details are at http://www.mingw.org.
  34.  
  35.    -- take one of the following two sets of two steps ---
  36.  
  37. 2. Make a subdirectory c:\quincy2000\mingw32.
  38.  
  39. 3. Extract all files into c:\quincy2000\mingw32. This subfolder
  40.    now contains all the compiler executable, header, and library files.
  41.  
  42.    -- or --
  43.  
  44. 2. Extract all files into wherever you please and use that path instead of
  45.    c:\quincy2000\mingw32 in the instructions that follow.
  46.  
  47. 3. Open the Options dialog from Quincy's Tools menu. Open the Directories
  48.    tab to tell Quincy where the compiler is installed. Use the top level
  49.    directory, c:\quincy2000, for example, and not the bin subdirectory.
  50.  
  51. 4. If you want to use the trace function during Windows programming, get the 
  52.    Quincy 2000 source code from the ftp site and replace windows.h from the Mingw32
  53.    distribution with the one in the Source\gnufixes subdirectory.
  54.  
  55.    You can put calls to void trace(char* fmt,...) (works just like printf) into your 
  56.    source code, open the Trace window and watch the traces occur.
  57.  
  58. Installing the gcc-mingw32 experimental Standard C++ Library
  59. ------------------------------------------------------------
  60. If you want to use the experimental Standard C++ Library to use Standard C++ features
  61. that the legacy libraries do not support:
  62.  
  63. 1. Ensure that you are using one of the earlier (2.95.2) versions of Mingw rather 
  64.    than the newest one downloaded from sourceforge.net. The experimental library
  65.    does not work with the newest version.
  66.  
  67. 2. Download libstdc++-v3-2.90.7.zip from
  68.    ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/mingw32/snapshots/libstdc++-v3-2.90.7/
  69.  
  70. 3. Make a subdirectory c:\quincy2000\libstdc++.
  71.  
  72. 4. Unzip the file you downloaded into the subdirectory.
  73.  
  74. 5. Select the "Experimental Standard C++ Library" radio button on the Tools/Options 
  75.    dialog's Build tab.
  76.  
  77. Installing the Resource Compiler and Editor Tools
  78. -------------------------------------------------
  79. If you are using Quincy 2000 for Win32 GUI development and you want an integrated
  80. resource compiler and editor:
  81.  
  82. 1. Download LCC-Win32 compiler system (lccwin32.exe) from
  83.    http://www.cs.virginia.edu/~lcc-win32/.
  84.  
  85. 2. Run lccwin32.exe to install the LCC-Win32 compiler system.
  86.  
  87. 3. Copy the following files from the lcc\bin folder (located wherever you
  88.    installed LCC-Win32) to c:\quincy2000\lcc\bin\. 
  89.  
  90.     lrc.exe
  91.     weditres.exe
  92.     wedit.hlp
  93.     wresdll.dll
  94.  
  95.   NOTE: If you do not want to keep the LCC-Win32 compiler system itself,
  96.   you can uninstall it with the Control Panel's Add/Remove Programs applet.
  97.  
  98. Installing the free Borland C/C++ version 5.5 Compiler System
  99. --------------------------------------------------------------
  100. 1. Go to http://www.borland.com/bcppbuilder/freecompiler/ and follow the instructions
  101.    for downloading the free compiler. Follow their installation instructions, too.
  102.    
  103. 2. If you want to use Turbo Debugger (Quincy 2000 does not yet have an integrated
  104.    debugger for the Borland compiler), follow the instructions at the same web site
  105.    to get it.
  106.    
  107. 3. To install the Borland compiler into Quincy 2000:
  108.    - Open the Options tabbed dialog on the Tools menu
  109.    - Open the Directories tab
  110.    - Enter the subdirectory where you installed the Borland compiler in the 
  111.      Compiler text box.
  112.      
  113.  
  114.