- Timestamp:
- Jan 11, 2025, 5:48:46 PM (12 months ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r7d65715f rd60a4c2 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.