Changes in INSTALL [4200b7e:061b001]
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r4200b7e r061b001 9 9 10 10 $ ./autogen.sh 11 $ ./configure 11 $ ./configure [ --prefix=/some/directory ] 12 12 $ make -j 8 install 13 13 14 For users using the distributed tarball :14 For users using the distributed tarball / github: 15 15 16 16 $ ./configure … … 20 20 21 21 22 Options for 'configure'22 Options for configure 23 23 ====================================== 24 The script 'configure' accepts many command line arguments. Run './configure 25 --help' to see a list of all of them. This document attempts to summarize the 26 most useful arguments. 24 The script 'configure' accepts many command-line arguments. Run 27 25 28 --prefix=/some/directory controls the path prefix common to all installed 29 cfa-cc components. Some components are installed in /some/directory/bin, 30 others in /some/directory/lib. If unspecified, this defaults to /usr/local. 31 To use (a subdirectory of) your home directory, ${HOME}/some/dir works, but 32 it is important not to put quotes around the directory path; Cforall may 33 appear to build, but the installed version may not work properly. 26 $ ./configure --help 27 28 to list them. The most common argument is: 29 30 --prefix=/some/directory controls the path prefix common to all installed 31 cfa-cc components. Components are installed in directories bin and lib. 32 If unspecified, prefix defaults to /usr/local. To use (a subdirectory of) 33 your home directory, ${HOME}/some/dir, but do not put quotes around the 34 directory path; Cforall may appear to build, but the installed version may 35 not work properly. 34 36 35 37 … … 38 40 39 41 $ cd ./test 40 $ make -j 8 all- tests42 $ make -j 8 all-local 41 43 42 44 The tests take about 2-5 minutes and can be stopped at any time.
Note:
See TracChangeset
for help on using the changeset viewer.