Content deleted Content added
No edit summary |
|||
Line 1:
{{Lowercase title}}
[[Image:Autoconf-automake-process.svg|thumb|
A '''configure script''' is an executable script designed to aid in developing a [[computer program|program]] to be run on a wide number of different computers. It matches the [[Library (computer science)|libraries]] on the user's computer, with those required by the program before [[compiler|compiling]] it from its [[source code]].
Line 20:
<source lang="sh">
./configure --libs="-lmpfr -lgmp"
./configure --prefix=/home/user/
</source>
The first line includes the <code>mpfr</code> and <code>gmp</code> libraries. The second line tells <code>[[make (software)|make]]</code> to install the final version in <code>/home/user/
== Generating <code>configure</code> ==
|