Changes in INSTALL [a24a69e:d6c59bce]
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
ra24a69e rd6c59bce 2 2 ====================================== 3 3 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: 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: 8 7 9 1.For developers using the root git:8 For developers using the root git: 10 9 11 $ ./autogen.sh12 $ ./configure [ --prefix=/some/directory ]13 $ make -j 8 install14 $ cfa10 $ ./autogen.sh 11 $ ./configure [ --prefix=/some/directory ] 12 $ make -j 8 install 13 $ cfa 15 14 16 2. For users using the distributed tarball/github:15 For users using the distributed tarball / github: 17 16 18 $ ./configure19 $ make -j 8 install20 $ cfa17 $ ./configure 18 $ make -j 8 install 19 $ cfa 21 20 22 where 8 or greateris the number of CPUs on your computer.21 where 8 is the number of CPUs on your computer. 23 22 24 23 The above instructions produce an in-tree, installed build, where intermediate … … 29 28 common set of sources, and where no "official" CFA version is designated: 30 29 31 $ ./autogen.sh32 $ mkdir ../build33 $ cd ../build34 $ ../cfa-cc/configure35 $ make -j 836 $ ./driver/cfa30 $ ./autogen.sh 31 $ mkdir ../build 32 $ cd ../build 33 $ ../cfa-cc/configure 34 $ make -j 8 35 $ ./driver/cfa 37 36 38 37 … … 41 40 The script 'configure' accepts many command-line arguments. Run 42 41 43 $ ./configure --help42 $ ./configure --help 44 43 45 44 to list them. The most common argument is: 46 45 47 --prefix=/some/directory controls the path prefix common to all installed48 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 the51 directory path; Cforall may appear to build, but the installed version may52 not work properly.46 --prefix=/some/directory controls the path prefix common to all installed 47 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 the 50 directory path; Cforall may appear to build, but the installed version may 51 not work properly. 53 52 54 53 … … 56 55 ====================================== 57 56 58 $ cd ./tests59 $ make -j 8 all-local57 $ cd ./tests 58 $ make -j 8 all-local 60 59 61 60 The tests take about 2-5 minutes and can be stopped at any time.
Note:
See TracChangeset
for help on using the changeset viewer.