Building: Difference between revisions
Jump to navigation
Jump to search
→General steps: was wrong
(→General steps: Otherwise configure doesn't exist) |
(→General steps: was wrong) |
||
Line 23: | Line 23: | ||
: 3. Configure, build, check, and install Octave | : 3. Configure, build, check, and install Octave | ||
<div style="margin-left:3em;"> | <div style="margin-left:3em;"> | ||
./bootstrap && \ | |||
mkdir .build && \ | mkdir .build && \ | ||
cd .build && \ | cd .build && \ | ||
./../configure --prefix=$HOME/my_octave && \ <ref><code>--prefix</code> determines the installation location, see the [[#Install Octave in home directory|Tweaks section]] for details. For more information about configuration options, type <code>./../configure --help</code>.</ref> | ./../configure --prefix=$HOME/my_octave && \ <ref><code>--prefix</code> determines the installation location, see the [[#Install Octave in home directory|Tweaks section]] for details. For more information about configuration options, type <code>./../configure --help</code>.</ref> | ||
make -j2 && \ <ref>Depending on your system and processor count, use a larger number of parallel jobs, e.g. <code>-j8</code>.</ref> | make -j2 && \ <ref>Depending on your system and processor count, use a larger number of parallel jobs, e.g. <code>-j8</code>.</ref> |