home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 359_01 / install.doc < prev    next >
Text File  |  1992-03-27  |  2KB  |  59 lines

  1. INSTALLING:
  2.  
  3. To install, you must do the following:
  4.  
  5. * Create a directory to install in, like c:\djgpp.
  6.  
  7. * Copy files from disks to c:\djgpp.
  8.  
  9. * Merge binary files by running commands:
  10.     C:\DJGPP> merge djgppzip djgpp.zip
  11.     C:\DJGPP> merge patch4 patch4.zip
  12.     C:\DJGPP> merge patch5 patch5.zip    
  13.  
  14.     After the merge, you may erase djgppzip.000-006, patch4.000-001, 
  15.     and patch5.000-001 for saving disk space
  16.  
  17. * Create a "temp" directory, like c:\tmp.
  18.  
  19. * Un-zip djgpp.zip in "djgpp" directory.
  20.     C:\DJGPP> unzip -d djgpp.zip
  21.  
  22. * Un-zip patch4.zip in "djgpp" directory.
  23.     C:\DJGPP> unzip -d patch4.zip
  24.  
  25. * Un-zip patch5.zip in "djgpp" directory.
  26.     C:\DJGPP> unzip -d patch5.zip
  27.         
  28. * Add the following lines to C:\AUTOEXEC.BAT:
  29.     set GCCBIN=c:\djgpp\bin
  30.                  ^ Use DOS slashes here so that AOUT2EXE.BAT will work
  31.     set GCCINC=c:/djgpp/include
  32.     set GCCLIB=c:/djgpp/lib
  33.     set GCCTMP=c:/tmp
  34.     set GO32TMP=c:/tmp
  35.     set GO32=ansi driver c:/djgpp/drivers/SOMETHING.grd gw 1024 gh 768
  36.                          ^^^ whatever driver works with your VGA (optional)
  37.     set BISON_SIMPLE=c:/djgpp/lib/bison.simple
  38.     set BISON_HAIRY=c:/djgpp/lib/bison.hairy
  39.     set FLEX_SKELETON=c:/djgpp/lib/flex.skeleton
  40.  
  41.   TMP and TEMP are checked if GCCTMP isn't set
  42.   GO32TMP is where go32 puts its paging file (GCCTMP, TMP, TEMP are checked,
  43.   in that order, also)
  44.  
  45.   Remember that unless you manually type these at the command line,
  46.   they won't take effect until you reboot.  Don't include the "ansi"
  47.   keyword in the "go32" variable if you don't have an ANSI.SYS driver
  48.   or equivalent.
  49.  
  50. * Add your binaries directory to your PATH in C:\AUTOEXEC.BAT
  51.     SET PATH= . . . ;C:\DJGPP\BIN
  52.  
  53. That's it! G++ is now installed on your system.
  54.  
  55.  
  56.  
  57.  
  58.  
  59.