Changeset 4200b7e for INSTALL


Ignore:
Timestamp:
Jun 27, 2021, 9:53:50 PM (2 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
2ac218d
Parents:
2e19e91
Message:

update README and INSTALL files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r2e19e91 r4200b7e  
    1 cfa-cc: The Cforall->C Compiler System
     1cfa-cc: Cforall to C Trans-compiler
    22======================================
    33
    44Cforall is built using GNU Make and the GNU Autoconf system.  It also requires
    5 g++ version >= 4.6, bison and flex.  On systems where GNU Make is the default
     5g++ version >= 6, bison and flex.  On systems where GNU Make is the default
    66make, the system is built by entering the commands:
    77
    8 For devs using the root git:
     8For developers using the root git:
    99
    10   ./autogen.sh
    11         ./configure
    12         make
    13         make install
     10  $ ./autogen.sh
     11  $ ./configure
     12  $ make -j 8 install
    1413
    1514For users using the distributed tarball:
    1615
    17         ./configure
    18         make
    19         make install
     16  $ ./configure
     17  $ make -j 8 install
     18
     19where 8 is the number of CPUs on your computer.
     20
    2021
    2122Options for 'configure'
    22 -----------------------
     23======================================
    2324The script 'configure' accepts many command line arguments.  Run './configure
    2425--help' to see a list of all of them.  This document attempts to summarize the
     
    3132  it is important not to put quotes around the directory path; Cforall may
    3233  appear to build, but the installed version may not work properly.
     34
     35
     36Build Test
     37======================================
     38
     39  $ cd ./test
     40  $ make -j 8 all-tests
     41
     42The tests take about 2-5 minutes and can be stopped at any time.
Note: See TracChangeset for help on using the changeset viewer.