Changes between Version 5 and Version 6 of InstallingFACT++
- Timestamp:
- 08/05/18 15:39:14 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallingFACT++
v5 v6 1 == C ompilingFACT++ ==1 == Checking out FACT++ == 2 2 3 3 First you need to get FACT++ from the svn-repository. The default command will checkout it into a sub-directory called "{{{directory}}}" at the current directory. It will be created if not existing. If the argument is omitted, the default directory is FACT++. … … 8 8 }}} 9 9 10 Now create a new sub-directory in your main source directory (here assuming the default name was used) 10 == Creating the build system == 11 12 Now create a new sub-directory '''build''' (or with your preferred name) in your main source directory (here assuming the default name was used) 11 13 12 14 {{{ … … 47 49 In this case, it is the development package of the nova library (libnova-dev). 48 50 49 Then call {{{make}}} or {{{make -jN}}} where '''N''' is the numbers of threads you want to utilize (check the number of CPU cores you can keep busy). 51 == Compiling FACT++ == 52 53 Then call 54 55 {{{ 56 [5] make -jN 57 }}} 58 59 where '''N''' is the numbers of threads you want to utilize (check the number of CPU cores you can keep busy). Or you can omit the {{{-jN}}} in case you want to run on a single CPU. 50 60 51 61 == Packaging FACT++ == … … 54 64 55 65 {{{ 56 [ 5] make package66 [6] make package 57 67 }}} 58 68 … … 60 70 61 71 {{{ 62 [ 6] dpkg -i fact++-YYWWDDHH.deb72 [7] dpkg -i fact++-YYWWDDHH.deb 63 73 }}} 64 74