Diff for /gforth/INSTALL between versions 1.14 and 1.15

version 1.14, 1995/11/27 18:37:06 version 1.15, 1995/11/29 20:20:32
Line 4  First, type Line 4  First, type
   
 ./configure  ./configure
   
 or better  
   
 CC=gcc ./configure  
   
 or however your gcc is called; because configure needs cc to find out some  
 parameters, and there may be differences in what is obtained from gcc and  
 from ghe default cc.  
   
 configure has the following useful parameters:  configure has the following useful parameters:
   --prefix=PREFIX         install architecture-independent files in PREFIX    --prefix=PREFIX         install architecture-independent files in PREFIX
                           [default: /usr/local]                            [default: /usr/local]
Line 36  configure has the following useful param Line 28  configure has the following useful param
 If you don't like the defaults for the installation directories, you  If you don't like the defaults for the installation directories, you
 should override them already during configure.  E.g., if you want to  should override them already during configure.  E.g., if you want to
 install in the /gnu hierarchy instead of in the default /usr/local  install in the /gnu hierarchy instead of in the default /usr/local
 hirarchy, say  hierarchy, say
   
 ./configure --prefix=/gnu  ./configure --prefix=/gnu
   
 After, configuration, type  Moreover, if your GCC is not called gcc (but, e.g., gcc-2.7.1), you
   should say so during configuration:
   
 make  env GCC=gcc-2.7.1 ./configure
   
 If your make has trouble with the Makefile, "make gforth" might work.  After, configuration, type
   
 If your installed gcc isn't called "gcc" (e.g., called "gcc-2.6.1"), type  
   
 make GCC=<whatever you call your gcc>  
   
 instead.  make
   
 Now you can check whether your shiny new Forth system works. Say  Now you can check whether your shiny new Forth system works. Say
   

Removed from v.1.14  
changed lines
  Added in v.1.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>