home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / c / 11673 < prev    next >
Encoding:
Internet Message Format  |  1992-07-28  |  15.0 KB

  1. Path: sparky!uunet!ogicse!hp-cv!hp-pcd!hpmcaa!hpmcaa!jimb
  2. From: jimb@hpmcaa (Jim Belesiu)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: 386 C Compilers
  5. Message-ID: <1992Jul28.154422.22552@hpmcaa.mcm.hp.com>
  6. Date: 28 Jul 92 15:44:22 GMT
  7. Article-I.D.: hpmcaa.1992Jul28.154422.22552
  8. References: <24JUL199211412559@venus.tamu.edu>
  9. Sender: news@hpmcaa.mcm.hp.com (News Administrator)
  10. Distribution: na
  11. Organization: HP McMinnville - OR
  12. Lines: 394
  13. Nntp-Posting-Host: hpmcaa.mcm.hp.com
  14. X-Newsreader: Tin 1.1 PL3
  15.  
  16. Of course you can't beat DJ Delorie's port of GNU's gcc compiler.  The
  17. README file follows--
  18.  
  19.  
  20.  
  21. -------------------------README-----------------------------------------------
  22.  
  23. This is the README file for DJ's GCC port to DOS ("djgpp")
  24.  
  25. Contents:
  26.     * Overview
  27.     * What's available
  28.     * How to install
  29.     * Deviations and Caveats
  30.     * Copyright information
  31.  
  32. Disclaimer: This software is distributed WITHOUT ANY WARRANTY; without
  33. even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  34. PURPOSE.
  35.  
  36. DJ Delorie
  37. USmail: 24 Kirsten Ave, Rochester, NH 03867-2954, USA
  38. email:  dj@ctron.com
  39.  
  40. mailing list: djgpp@sun.soe.clarkson.edu (listserv@sun.soe.clarkson.edu)
  41.  
  42.  
  43.  
  44.  
  45. Overview:
  46.  
  47. This package contains a 32-bit 80386 DOS extender with symbolic
  48. debugger, a C/C++ compiler with utilities, development libraries, and
  49. source code.  It generates full 32-bit programs and supports full
  50. virtual memory with paging to disk. 
  51.  
  52. Requirements:
  53.  
  54. A 80386-based IBM compatible PC or PS/2, approximately 4-5Mb of hard
  55. drive space, and 512K RAM.  Available extended (or expanded under VCPI)
  56. memory is strongly recommended.
  57.  
  58. Supported Wares:
  59.  
  60. * Up to 128M of extended memory (expanded under VCPI)
  61. * Up to 128M of disk space used for swapping
  62. * SuperVGA 256-color mode up to 1024x768
  63. * 80387
  64. * XMS & VDISK memory allocation strategies
  65. * VCPI programs, such as QEMM, DESQview, and 386MAX
  66.  
  67. Unsupported:
  68.  
  69. * DPMI
  70. * Microsoft Windows
  71. * Multiprocessing (fork())
  72.  
  73.  
  74.  
  75.  
  76. File location:
  77.  
  78.     host:      barnacle.erc.clarkson.edu
  79.     login:     ftp
  80.     password:  send your e-mail address
  81.     directory: ~ftp/pub/msdos/djgpp
  82.  
  83. Many thanks to the sysops at Clarkson for providing a home to djgpp!
  84.  
  85. As a convenience to non-FTP users, djgpp is also stored on Clarkson's
  86. archive server.  To access the archive server, do this:
  87.  
  88.    % mail archive-server@barnacle.erc.clarkson.edu
  89.    Subject: <none>
  90.    help
  91.    index msdos/djgpp
  92.    ^D
  93.  
  94. NOTE: In accordance with FSF CopyLeft, you are not allowed to upload
  95. this program to a distribution site unless that site also makes the FSF
  96. sources for these programs available.  Please read the file COPYING for
  97. more details.  FSF sources are available on prep.ai.mit.edu, and on
  98. barnacle.erc.clarkson.edu
  99.  
  100. NOTE: If your application links in object modules that were written
  101. by FSF, your application counts as a "derived work" and must obey
  102. the provisions of the FSF Copyrights.  See the file COPYING for
  103. details.  Specifically, the C++ classes in libc.a and obstacks are
  104. FSF works that are covered by the GNU GPL.  The mere act of compiling
  105. does not affect the copyright status of your program.
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. INSTALLING:
  116.  
  117. To install, you must do the following:
  118.  
  119. * Create a "temp" directory, like c:\tmp.
  120.  
  121. * Create a directory to install in, like c:\djgpp.
  122.  
  123. * Un-zip the appropriate zipfiles in the install directory.
  124.     C:\DJGPP> pkunzip -d djdev107.zip
  125.     C:\DJGPP> pkunzip -d djgas138.zip
  126.     C:\DJGPP> pkunzip -d djgcc222.zip
  127.  
  128. * Add the following lines to C:\AUTOEXEC.BAT:
  129.     set COMPILER_PATH=c:/djgpp/bin
  130.     set C_INCLUDE_PATH=c:/djgpp/include
  131.     set CPLUS_INCLUDE_PATH=c:/djgpp/cplusinc:c:/djgpp/include
  132.     set OBJC_INCLUDE_PATH=c:/djgpp/include
  133.     set OBJCPLUS_INCLUDE_PATH=c:/djgpp/include
  134.     set LIBRARY_PATH=c:/djgpp/lib
  135.     set TMPDIR=c:/tmp
  136.              ^^^ this is where gcc's temp files go
  137.     set GO32TMP=c:/tmp
  138.                 ^^^ this is where your paging file goes
  139.     set GO32=ansi driver c:/djgpp/drivers/SOMETHING.grd gw 1024 gh 768
  140.                          ^^^ whatever driver works with your VGA (optional)
  141.     set BISON_SIMPLE=c:/djgpp/lib/bison.simple
  142.     set BISON_HAIRY=c:/djgpp/lib/bison.hairy
  143.     set FLEX_SKELETON=c:/djgpp/lib/flex.skeleton
  144.  
  145.   GO32TMP is where go32 puts its paging file (TMP and TEMP are checked,
  146.   in that order, also)
  147.  
  148.   Remember that unless you manually type these at the command line,
  149.   they won't take effect until you reboot.  Don't include the "ansi"
  150.   keyword in the "go32" variable if you don't have an ANSI.SYS driver
  151.   or equivalent.
  152.  
  153. * Add your binaries directory to your PATH in C:\AUTOEXEC.BAT
  154.     SET PATH= . . . ;C:\DJGPP\BIN
  155.  
  156. That's it! djgpp is now installed on your system.
  157.  
  158.  
  159.  
  160.  
  161.  
  162. The GO32 environment variable:
  163.  
  164.  
  165. This variable controls the options available in go32 or debug32.  The
  166. syntax of this variable is:
  167.  
  168.   SET GO32=[parm [value]] [parm [value]] . . .
  169.  
  170. Parameters:
  171.  
  172.   ansi           Use ANSI commands to control the color in debug32
  173.   mono           Use the Monochrome monitor for debugging - useful when
  174.                    debugging graphics applications
  175.   1rm            Redirect stdout (file #1) to the monochrome monitor
  176.   2rm            Redirect stderr (file #2) to the monochrome monitor
  177.   1r2            Redirect stdout (file #1) to stderr (file #2)
  178.   2r1            Redirect stderr (file #2) to stdout (file #1)
  179.  
  180.   glob           enable globbing (default)
  181.   noglob         disable globbing
  182.  
  183.   emu [path]     Use the specified file as the 80387 emulator
  184.  
  185.   driver [path]  Use the specified file as the graphics driver
  186.   gw [width]     Default graphics width
  187.   gh [height]    Default graphics height
  188.   tw [width]     Default text width
  189.   th [height]    Default text height
  190.   nc [colors]    Number of colors (for new-style drivers only - see cbgrx*.zip)
  191.  
  192.  
  193. These parameters may occur in any order.
  194.  
  195. Note that "1rm" and "2rm" are done before "1r2" and "2r1", so "1rm 2r1" sends
  196. stdout to the mono monitor and stderr to any redirection used.
  197.  
  198. Examples:
  199.  
  200.   C:\> set GO32=mono driver c:\djgpp\drivers\tseng4k.grd gw 1024 gh 768 tw 132 th 43 nc 256
  201.   C:\> set GO32=ansi
  202.   C:\> set GO32=driver c:\djgpp\drivers\tseng4k.grd ansi
  203.   C:\> set GO32=mono 1rm 2rm
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214. Deviations and Caveats:
  215.  
  216. GCC/G++ deviates from the U**x version in a number of ways, mostly to
  217. accomodate deficiencies in the MS-DOS environment, and my own laziness.
  218.  
  219. * An 80387 is required to do floating point.  An emulator is provided.
  220.   cc1 and cc1plus shouldn't use the 387 unless compiling floating point
  221.   code.  The environment variable "387" can override the auto-detection
  222.   routine:
  223.     SET 387=YES   to force 387 handlers to be enabled
  224.     SET 387=NO    to force 387 accesses to fault
  225.     SET 387=QUERY to get a message showing the results of the auto-detection
  226.   If no 80387 is present and the program attempts to use it, a message
  227.   indicating where the instruction is will be displayed.  To use the
  228.   387 emulator, add "emu c:\djgpp\emu387\emu387" to the GO32 environment
  229.   variable.  Specifying use of the emulator overrides the "387"
  230.   environment variable.
  231.  
  232. * The VDISK method of allocating extended memory is supported.  The
  233.   INT 15h method is also.  When the extender runs out of conventional and
  234.   extended memory, it uses a paging file named $(GO32TMP)/pgXXXXXX.386, where
  235.   XXXX is an unspecified hex value.  This file is normally removed on exit.
  236.  
  237. * Up to 128 MB of physical memory and 128 MB of disk swap space are allowed.
  238.   A 512K machine is sufficient, but very slow due to paging.
  239.  
  240. * The utilies support the MS-DOS standard response file method for giving
  241.   more than 128 bytes of command line.  Example: "gcc -o foo @foo.lnk" where
  242.   foo.lnk contains a list of .o files.  Wildcard expansion (globbing) is
  243.   performed on the parameters, unless they are surrounded by single quotes.
  244.   Double quotes can be used to prevent spaces from separating arguments.
  245.  
  246. * Since MS-DOS does not distinguish case in file names, some .h files
  247.   used for C++ have had underscores prepended to them to avoid conflict
  248.   (ie: String.h conflicts with string.h, so it became _String.h).
  249.  
  250. * When using ar to create archives, be warned that the ar version
  251.   supplied cannot update an archive that's been sequenced (ar s foo.a),
  252.   and cannot sequence a file that's been sequenced.  Also, ld cannot
  253.   use an archive that's not sequenced.  The following method is suggested:
  254.       ar rv mylib.a $(OBJS)
  255.       cp mylib.a mylib2.a
  256.       ar rvs mylib2.a
  257.       (and then link with mylib2.a)
  258.  
  259. * The extender can be added to any gcc-compiled program by copying go32.exe
  260.   to be <program>.exe, where <program> is the 32-bit program.  For example,
  261.   if "hello" is a gcc-compiled a.out file, and "hello.exe" is a copy of
  262.   go32.exe, then when "hello.exe" runs, it loads the file called "hello"
  263.   in the same directory, and executes it if present.  Otherwise,
  264.   the first parameter is the executable (ie: go32 cc1plus foo.cc).
  265.  
  266. * The extender can be merged to create one .exe file that is the extender
  267.   and the executable in one file, by using the stub.exe program:
  268.       copy /b stub.exe+myprog myprog.exe
  269.   This will only work if go32.exe is in your search path, because stub.exe
  270.   runs it.  Alternatively, you can prepend go32.exe itself to an a.out file
  271.   to get a single executable (stub.exe is much smaller).  Note that if
  272.   you re-compile go32 or stub, you must strip off the symbol table first. 
  273.  
  274. * The extender runs programs at logical address 0.  A copy of the first
  275.   1 MB of physical memory (including the AT channel) is mapped to
  276.   0xE0000000 in the program's address space.  The stack grows down from
  277.   0x7FFFFFFC in the program's address space.  Data usually starts at
  278.   0x00400000.
  279.  
  280. * The paging mechanism understands how SuperVGA's map their memory onto
  281.   the AT bus and automatically swaps pages as the program tries to
  282.   access them.  The program sees a linear range from 0xD0000000 to
  283.   0xD0100000 that corresponds to each pixel in the 256-color modes
  284.   of SuperVGAs.  To use this feature, you'll have to set the GO32
  285.   environment variable like this:
  286.     C>set go32=driver c:\djgpp\drivers\tseng4k.grd gw 640 gh 480 tw 132 th 43
  287.   These parameter pairs can be omitted or rearranged as needed.  They are
  288.   the "driver" name, default graphics width and height, and default
  289.   text width and height. Libgr.a doesn't have to be recompiled, nor
  290.   do graphics programs, when a different graphics mode is selected
  291.   (the extender handles it).  It is strongly recommended that the program
  292.   use the GR_default_graphics and GR_default_text modes to switch to
  293.   graphics or text.  These modes use the parameters specified by the
  294.   GO32 environment variable, allowing the user to select a favorite
  295.   graphics and text mode.
  296.  
  297. * Symbols are stored in virtual memory, so you won't run out of symbol
  298.   space until both extended memory and the disk are all used up.  For
  299.   large programs, you might notice a slight delay while it looks up
  300.   symbols.  Programs with a lot of lines in a given module may run out
  301.   of memory as the line number table is built in real memory and transferred
  302.   to virtual memory.
  303.  
  304. * Signals are not reported to the program.  However, interrupts do continue
  305.   to get serviced while in protected mode (ie: keypress, timer, etc).
  306.   CTRL-C will get you back to the debugger in debug32, and you can continue
  307.   from where you stopped.  All signals (ie: exceptions) cause debugging
  308.   traps in debug32, or general faults in go32.
  309.  
  310.  
  311.  
  312. Copyright Information:
  313.  
  314. * Source code for the GNU utilities is copyright (c) Free Software Foundation.
  315.   For more information on the FSF copyright, see their source code or write
  316.   Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  317.  
  318.   A copy of their file "COPYING" is included in the docs directory.  Some of
  319.   the FSF source code has been modified to operate properly in the MS-DOS
  320.   environment.
  321.  
  322. * Source code for most of libc.a are copyright (c) Regents of the University
  323.   of California.  These files include copyright information in them.  The
  324.   utilities are compiled against these libraries, and thus contain software
  325.   developed by the University of California, Berkeley, and its contributors.
  326.   Some of the BSD source code has been modified to operate properly in the
  327.   MS-DOS environment.
  328.  
  329. * Any sources not falling under the copyrights of FSF or UCB (as above) are
  330.   Copyright (c) 1991 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954.
  331.   To contact me via E-Mail, sent to "dj@ctron.com".  Cabletron Systems Inc
  332.   is in no way involved with this project; I just happen to work for them
  333.   during the day.
  334.  
  335. Terms and Conditions:
  336.  
  337. * Source code copyright FSF is distributed under the terms of the GNU
  338.   Public General License.  See the file "COPYING" in doc.arc for more
  339.   information.  If your program links in object modules (in libc.a) that
  340.   are compiled from GNU sources, then your entire program must be
  341.   distributed under the terms of the GNU GPL as a "derived work".  These
  342.   modules are the C++ class library (including the streams classes) and
  343.   obstacks.  The sources in libsrc have the copyright notices in them
  344.   for the various modules.
  345.  
  346. * Source code copyright UCB is distributed under the terms listed in the
  347.   UCB source code itself.
  348.  
  349. * Source code copyright DJ Delorie is distributed under the terms of the
  350.   GNU General Public Licence, with the following exceptions:
  351.   ("go32.exe" refers to go32.exe and debug32.exe)
  352.  
  353.   * There are no conditions on distributing copies of stub.exe or emu387
  354.     as they are originally distributed in this software package.
  355.  
  356.   * If a user creates an application, prepends a copy of go32.exe onto
  357.     the beginning of it, and distributes it free of charge, then the
  358.     user is under no obligations to distribute source or pay royalties.
  359.     Note that the copyright terms of the FSF and/or UCB must be
  360.     obeyed regardless of this.
  361.   
  362.   * If a user creates an application, prepends a copy of go32.exe onto
  363.     the beginning of it, and charges a fee for the software, then a
  364.     royalty of $5 or 5% of the selling price per copy sold must be paid
  365.     to DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954.  Note that
  366.     shareware programs are not considered "sold" until payment is rendered
  367.     for them.
  368.  
  369.   * For all other cases, source code for go32.exe must be distributed
  370.     with any distributed copies of go32.exe, or made available as per
  371.     the terms of the GNU GPL.  In these cases, no royalties are due,
  372.     and all freedoms provided by the GPL apply.
  373.   
  374.   * Software that requires go32.exe to run, but is not distributed with
  375.     a copy of go32.exe, incurs no obligations with regards to the
  376.     above sections.
  377.  
  378.   * Contact me for special terms if none of the above are suitable.
  379.  
  380.   * Donations are always appreciated.
  381.  
  382.   The intent of this copyright is this: If you make money by using the
  383.   programs I wrote, I get some of it.  If you use your sources to
  384.   teach others how to write programs, I'll support you.
  385.  
  386.   Changes to source code copyright BSD or FSF are copyright DJ Delorie, but
  387.   fall under the terms of the original copyright.
  388.  
  389.  
  390.  
  391.  
  392.  
  393. Donations may be made to any of the following:
  394.  
  395.     DJ Delorie
  396.     24 Kirsten Ave
  397.     Rochester, NH  03867-2954
  398.     USA
  399.  
  400.     Free Software Foundation
  401.     675 Mass Ave
  402.     Cambridge, MA  02139
  403.     USA
  404.  
  405.     Computer Systems Research Group
  406.     Computer Science Division, EECS
  407.     University of California
  408.     Berkeley, California  94720
  409.     USA
  410.