Changeset d60a4c2 for INSTALL


Ignore:
Timestamp:
Jan 11, 2025, 5:48:46 PM (12 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
f886608
Parents:
7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r7d65715f rd60a4c2  
    1111  $ ./configure [ --prefix=/some/directory ]
    1212  $ make -j 8 install
     13  $ cfa
    1314
    1415For users using the distributed tarball / github:
     
    1617  $ ./configure
    1718  $ make -j 8 install
     19  $ cfa
    1820
    1921where 8 is the number of CPUs on your computer.
     22
     23The above instructions produce an in-tree, installed build, where intermediate
     24binaries share the same folders as their sources, and where the final result
     25becomes an "official" CFA version for the current environment.  For developers
     26preferring an isolated side-by-side build, where all binaries are separated
     27from sources, where it is possible to build multiple configurations from a
     28common set of sources, and where no "official" CFA version is designated:
     29
     30  $ ./autogen.sh
     31  $ mkdir ../build
     32  $ cd ../build
     33  $ ../cfa-cc/configure
     34  $ make -j 8
     35  $ ./driver/cfa
    2036
    2137
Note: See TracChangeset for help on using the changeset viewer.