Content deleted Content added
m Has gained or simply gained but no apostrophy. |
m →Usage: <source lang="sh"> |
||
Line 18:
Upon its completion, <code>configure</code> prints a report to <code>config.log</code>. Running <code>./configure --help</code> gives a list of command line arguments, for enabling or disabling additional features such as:
<source lang="sh">
./configure --libs="-lmpfr -lgmp"
./configure --prefix=/home/myname/apps
</
The first line includes the <code>mpfr</code> and <code>gmp</code> libraries. The second line tells [[make (software)|make]] to install the final version in <code>/home/myname/apps</code>. The <code>INSTALL</code> file contains instructions should the prescribed steps fail.
|