Changeset d6c59bce


Ignore:
Timestamp:
Jan 10, 2025, 12:49:53 PM (10 days ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
299bd989
Parents:
329c62f
Message:

Starter for developer roll-on instructions.

Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r329c62f rd6c59bce  
    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.