Changeset d6c59bce
- Timestamp:
- Jan 10, 2025, 12:49:53 PM (10 days ago)
- Branches:
- master
- Children:
- 299bd989
- Parents:
- 329c62f
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r329c62f rd6c59bce 11 11 $ ./configure [ --prefix=/some/directory ] 12 12 $ make -j 8 install 13 $ cfa 13 14 14 15 For users using the distributed tarball / github: … … 16 17 $ ./configure 17 18 $ make -j 8 install 19 $ cfa 18 20 19 21 where 8 is the number of CPUs on your computer. 22 23 The above instructions produce an in-tree, installed build, where intermediate 24 binaries share the same folders as their sources, and where the final result 25 becomes an "official" CFA version for the current environment. For developers 26 preferring an isolated side-by-side build, where all binaries are separated 27 from sources, where it is possible to build multiple configurations from a 28 common 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 20 36 21 37
Note: See TracChangeset
for help on using the changeset viewer.