Annotation of gforth/INSTALL, revision 1.4

1.4     ! pazsan      1: Preliminary version
1.1       anton       2: 
1.4     ! pazsan      3: Create a makefile with configure.
1.3       anton       4: You need gcc version 2.0 or later to compile gforth.
                      5: 
1.1       anton       6: Create a machine description file for your machine, if necessary.
                      7: 
1.4     ! pazsan      8: configure has the following useful parameters:
        !             9: -direct-threaded: setup for a direct threaded interpreter; this is faster
        !            10:    on many machines, but needs special support. Unsupported machines will
        !            11:    ingore this switch. On some CISC machines, direct threading isn't an
        !            12:    advantage over indirect threading.
1.1       anton      13: 
1.4     ! pazsan     14: -without-debug: omits the -g switch and creates smaller images on machines
        !            15:    where "strip" has problems with gcc style debugging informations.
1.1       anton      16: 
1.4     ! pazsan     17: Now type
1.2       anton      18: 
1.4     ! pazsan     19: gmake
1.2       anton      20: 
1.4     ! pazsan     21: or whatever the name of GNU make on your system is.
        !            22: If your installed gcc isn't called "gcc" (eg. called "gcc-2.6.1"), type
1.1       anton      23: 
1.4     ! pazsan     24: gmake CC=<whatever you call your gcc>
        !            25: 
        !            26: instead.

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