home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / languages / c / djgpp.2.0.README < prev    next >
Encoding:
Text File  |  1996-03-25  |  7.0 KB  |  211 lines

  1. This package includes djgpp Version 2.00 for NeXT, a cross compiler based on gcc 2.7.2, for the C, C++ and Objective C languages.
  2.  
  3. Djgpp is a DOS port of gcc,  produces executables that run under DOS/DPMI  extender (I don't know what this is, but my program runs on my colleage's PC).
  4.  
  5. This tool allows to port very easely standard C programs (without graphics) from a NeXT to PCs without shrinking sources filenames, CR/LF filtering, and $.
  6.  
  7. It should work also with C++ and Objective C programs (not tested !)
  8.  
  9.  
  10. To use it :
  11.     gcc-dos hello.c -o hello.exe
  12. or
  13.     g++-dos hello.cc -o hello.exe
  14.  
  15. In makefiles, change the CC macro : CC = gcc-dos
  16. type make program and a "program.exe" file wil be automatically generated.
  17.  
  18. to install it (in /usr/local directories) :
  19.  
  20. gtar xfz x_gcc-dos_272.b.N.tar.gz
  21.  
  22.  
  23.  
  24. This software is distributed under the FSF license as a public  service.
  25. The author offer no warranty or guarantee of any type.
  26. No modification of the original sources were made.
  27.  
  28. ------------------------------------------------
  29. Bruno.Bienfait@EROS.CCC.Uni-Erlangen.de
  30. http://schiele.organik.uni-erlangen.de/Bruno_Bienfait/home.html
  31. http://schiele.organik.uni-erlangen.de/Bruno_Bienfait/HotPostscript.html
  32. ------------------------------------------------
  33.  
  34.  
  35.  
  36. -------------------------------------------------------------------------------
  37. DJGPP v2.0 is a free environment for developing 32-bit protected mode
  38. software in C/C++ under MS-DOS.
  39.  
  40. Status and other information (online docs, FAQ, mail archives) are
  41. made available through the djgpp web pages at http://www.delorie.com/.
  42. Discussion of DJGPP and questions about its usage or features are
  43. through the djgpp news group (post to comp.os.msdos.djgpp) and djgpp
  44. mailing list (send your messages to <djgpp@delorie.com>, subscribe
  45. through <listserv@delorie.com>).  Look on the web page for information
  46. on the latest versions of various DJGPP packages.
  47.  
  48. Version information is in manifest/*.ver within each zip.  Contents
  49. are in manifest/*.mft in each zip.
  50.  
  51. A different, more complete (and longer) tutorial on how to get started
  52. with DJGPP was written by An <avly@remus.rutgers.edu> and is available
  53. by anonymous ftp from x2ftp.oulu.fi in the
  54. /pub/msdos/programming/djgpp2 directory, filename djtut-bm.zip.  You
  55. can also read it on-line by pointing your Web browser to this URL:
  56.  
  57.     http://remus.rutgers.edu/~avly/djgpp.html
  58.  
  59.  
  60. Status and other information (online docs, FAQ, mail archives) are
  61. made available through the djgpp web pages at http://www.delorie.com/.
  62. Discussion of DJGPP and questions about its usage or features are
  63. through the djgpp news group (post to comp.os.msdos.djgpp) and djgpp
  64. mailing list (send your messages to <djgpp@delorie.com>, subscribe
  65. through <listserv@delorie.com>).  Look on the web page for information
  66. on the latest versions of various DJGPP packages.
  67. -------------------------------------------------------------------------------
  68. -------------------------------------------------------------------------------
  69. -------------------------------------------------------------------------------
  70.  
  71. -------------------------------------------------------------------------------
  72.   approximative build history (the basic procedure is described in the DJGPP FAQ ).
  73. -------------------------------------------------------------------------------
  74.  
  75. Note : you don't have to modify the original sources
  76.  
  77.     you need :
  78.         gcc 2.7.2
  79.         binutils 2.5.2  (does 2.6 does not assemble correctly ?)
  80.         The librairies from DJGPP v2
  81.         The include files from DJGPP v2 
  82. ---------------------
  83.  
  84. mkdir DJGPP
  85. cd DJGPP
  86.  
  87. -------------------
  88. #extract gnu binutils with gnutar
  89. tar xfz ../binutils-2.6.tar.gz
  90.  
  91.  
  92. cd binutils-2.6
  93. configure  --target=i386-coff-go32
  94.  
  95. make CFLAGS=-O
  96.  
  97.     mkdirs /usr/local/i386-go32-msdos/bin #on a NeXT
  98.     mkdir -p /usr/local/i386-go32-msdos/bin #on a sun 
  99.  
  100.  
  101.      cd ../cd binutils-2.6
  102.      cd binutils
  103.      cp ar c++filt objcopy objdump size /usr/local/i386-go32-msdos/bin
  104.      cp nm.new /usr/local/i386-go32-msdos/bin/nm
  105.      cp strip.new /usr/local/i386-go32-msdos/bin/strip
  106.      
  107.      cd ../gas
  108.      cp as.new /usr/local/i386-go32-msdos/bin/as
  109.      cp gasp.new /usr/local/i386-go32-msdos/bin/gasp
  110.      
  111.      cd ../ld
  112.      cp ld.new /usr/local/i386-go32-msdos/bin/ld
  113. #The assembler of binutils 2.6 does not work correctly
  114.     #installing bin-utils 2.5
  115.         make CC=gcc "CFLAGS=STDC_HEADERS" #"CFLAGS=STDC_HEADERS" is for next
  116.         cd gas
  117.         cp as.new /usr/local/i386-go32-msdos/bin/as
  118.          cp gasp.new /usr/local/i386-go32-msdos/bin/gasp
  119.  
  120. -------------------
  121. # PART 2 the compiler gcc
  122.  
  123. cd ..
  124. tar xfz ../gcc-2.7.2.tar.gz
  125. cd gcc-2.7.2
  126. configure --target=i386-go32-msdos
  127. make CFLAGS=-O cc1  #would be better on Unix to use CC=gcc
  128. make CFLAGS=-O cc1obj #ObjC
  129. make CFLAGS=-O cc1plus
  130. make CFLAGS=-O cccp
  131. make CFLAGS=-O xgcc
  132. make CFLAGS=-O g++-cross
  133.  
  134.  
  135.  
  136. ll cc*
  137. -rwxrwxr-x  1 beeped   1257616 Mar 21 19:32 cc1*
  138. -rwxrwxr-x  1 beeped   1335308 Mar 21 19:34 cc1obj*
  139. -rwxrwxr-x  1 beeped   1681552 Mar 21 20:03 cc1plus*
  140. -rwxrwxr-x  2 beeped    121084 Mar 21 19:07 cccp*
  141. -rw-rw-r--  1 beeped     15823 Mar 30  1995 cccp.1
  142. -r--r--r--  1 beeped    284835 Oct 26 15:07 cccp.c
  143. -rw-rw-r--  1 beeped    107800 Mar 21 19:06 cccp.o
  144.  
  145.  
  146.         
  147. #installing gcc-dos
  148.     cd ../../gcc-2.7.2
  149.      cp xgcc /usr/local/bin/gcc-dos
  150.      cp cc1 /usr/local/i386-go32-msdos/bin/cc1
  151.      cp cccp /usr/local/i386-go32-msdos/bin/cpp
  152.     cp cc1plus cc1obj /usr/local/i386-go32-msdos/bin/
  153. #g++
  154.     cd gcc-2.7.2
  155.     cp g++-cross /usr/local/bin/g++-dos 
  156.     cd /usr/local/bin
  157.     ln -s gcc-dos i386-go32-msdos-gcc
  158.     
  159. # Installing the librairies and the includes
  160. #
  161.     mkdir /usr/local/djgpp
  162.     mkdirs  /usr/local/lib/gcc-lib/i386-go32-msdos/2.7.2
  163.         
  164.     cp -r /private/tmp/O_djdev200/lib /usr/local/djgpp/
  165.     
  166.     
  167.     #Installing libg++ and libobc
  168.     cp /private/tmp/O_lgp271b/lib/* /usr/local/djgpp/lib
  169.  
  170.     cp -r /private/tmp/O_djdev200/include /usr/local/djgpp/
  171.     cd /usr/local/djgpp/lib ; ln -s libgpp.a libstdc++.a
  172.     cd /usr/local/lib/gcc-lib/i386-go32-msdos/2.7.2
  173.  
  174.     #the objC include files
  175.     cp -r /usr/local/lib/gcc-lib/m68k-next-nextstep3/2.7.2/include/objc /usr/local/djgpp/include
  176.     
  177.     #install
  178.       ln -s /usr/local/djgpp/include .
  179.      ln -s /usr/local/djgpp/lib/* .
  180.      chmod a+r /usr/local/djgpp/lib/*
  181.      
  182.      
  183.     cd include
  184.     dos2unix * */* # my perl script
  185.  
  186.     dos2unix lib/djgpp.lnk
  187.     Change lib/djgpp.lnk to use "coff-i386" instead of "coff-go32" 
  188.     chmod a+r * */* */*/* */*/*/*
  189.     chmod a+x *
  190.     cd include
  191.     chmod a+x debug sys libc libm machine inlines netinet
  192.     cd ..
  193. # Build `stubify' and install it in `/usr/local/i386-go32-msdos/bin'.
  194.     
  195.     found the source in djcrx200.zip
  196.     cd /LocalApps/tools/FTP/DJGPP/stub
  197.     55  ls
  198.     56  dos2unix *
  199.     57  cc -O stubify.c -o stubify
  200.     58  stubify
  201.  
  202.      #Install :
  203.         cp /LocalApps/tools/FTP/DJGPP/stub/stubify /usr/local/i386-go32-msdos/bin/
  204.         
  205.         
  206.         
  207.         
  208. #Making an archive
  209. cp README /usr/local/djgpp/README
  210. gtar cfzP x_gcc-dos_272.b.N.tar.gz  /usr/local/i386-go32-msdos /usr/local/djgpp /usr/local/bin/gcc-dos /usr/local/bin/g++-dos /usr/local/lib/gcc-lib/i386-go32-msdos/2.7.2 /usr/local/bin/g++-dos/i386-go32-msdos-gcc
  211.