Changeset a24a69e
- Timestamp:
- Sep 30, 2025, 7:51:45 AM (4 days ago)
- Branches:
- master
- Children:
- 7ffd7f0
- Parents:
- 23681db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r23681db ra24a69e 2 2 ====================================== 3 3 4 Cforall is built using GNU Make and the GNU Autoconf system. It also requires 5 g++ version >= 6, bison and flex. On systems where GNU Make is the default 6 make, the system is built by entering the commands: 4 Cforall is built on Linux using GNU Make and the GNU Autoconf system, which 5 includes Windows WSL. It also requires g++ version >= 9, bison and flex. On 6 systems where GNU Make is the default make, the system is built by entering the 7 commands: 7 8 8 For developers using the root git:9 1. For developers using the root git: 9 10 10 $ ./autogen.sh11 $ ./configure [ --prefix=/some/directory ]12 $ make -j 8 install13 $ cfa11 $ ./autogen.sh 12 $ ./configure [ --prefix=/some/directory ] 13 $ make -j 8 install 14 $ cfa 14 15 15 For users using the distributed tarball /github:16 2. For users using the distributed tarball/github: 16 17 17 $ ./configure18 $ make -j 8 install19 $ cfa18 $ ./configure 19 $ make -j 8 install 20 $ cfa 20 21 21 where 8 is the number of CPUs on your computer.22 where 8 or greater is the number of CPUs on your computer. 22 23 23 24 The above instructions produce an in-tree, installed build, where intermediate … … 28 29 common set of sources, and where no "official" CFA version is designated: 29 30 30 $ ./autogen.sh31 $ mkdir ../build32 $ cd ../build33 $ ../cfa-cc/configure34 $ make -j 835 $ ./driver/cfa31 $ ./autogen.sh 32 $ mkdir ../build 33 $ cd ../build 34 $ ../cfa-cc/configure 35 $ make -j 8 36 $ ./driver/cfa 36 37 37 38 … … 40 41 The script 'configure' accepts many command-line arguments. Run 41 42 42 $ ./configure --help43 $ ./configure --help 43 44 44 45 to list them. The most common argument is: 45 46 46 --prefix=/some/directory controls the path prefix common to all installed47 cfa-cc components. Components are installed in directories bin and lib.48 If unspecified, prefix defaults to /usr/local. To use (a subdirectory of)49 your home directory, ${HOME}/some/dir, but do not put quotes around the50 directory path; Cforall may appear to build, but the installed version may51 not work properly.47 --prefix=/some/directory controls the path prefix common to all installed 48 cfa-cc components. Components are installed in directories bin and lib. 49 If unspecified, prefix defaults to /usr/local. To use (a subdirectory of) 50 your home directory, ${HOME}/some/dir, but do not put quotes around the 51 directory path; Cforall may appear to build, but the installed version may 52 not work properly. 52 53 53 54 … … 55 56 ====================================== 56 57 57 $ cd ./tests58 $ make -j 8 all-local58 $ cd ./tests 59 $ make -j 8 all-local 59 60 60 61 The tests take about 2-5 minutes and can be stopped at any time.
Note:
See TracChangeset
for help on using the changeset viewer.