Files
master/chapter06/bc.html
wxy efa9c8bd8b 重新设置了页面字符集
如有冲突,手工解决一下。
2015-04-23 00:48:01 +08:00

206 lines
6.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content=
"application/xhtml+xml; charset=utf-8" />
<title>
6.37.&nbsp;Bc-1.06.95
</title>
<link rel="stylesheet" type="text/css" href="../stylesheets/lfs.css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1" />
<link rel="stylesheet" href="stylesheets/lfs-print.css" type="text/css"
media="print" />
</head>
<body class="lfs" id="lfs-7.7-systemd">
<div class="navheader">
<h4>
Linux From Scratch - Version 7.7-systemd
</h4>
<h3>
Chapter&nbsp;6.&nbsp;Installing Basic System Software
</h3>
<ul>
<li class="prev">
<a accesskey="p" href="bash.html" title="Bash-4.3.30">Prev</a>
<p>
Bash-4.3.30
</p>
</li>
<li class="next">
<a accesskey="n" href="libtool.html" title="Libtool-2.4.6">Next</a>
<p>
Libtool-2.4.6
</p>
</li>
<li class="up">
<a accesskey="u" href="chapter06.html" title=
"Chapter&nbsp;6.&nbsp;Installing Basic System Software">Up</a>
</li>
<li class="home">
<a accesskey="h" href="../index.html" title=
"Linux From Scratch - Version 7.7-systemd">Home</a>
</li>
</ul>
</div>
<div class="wrap" lang="en" xml:lang="en">
<h1 class="sect1">
<a id="ch-system-bc" name="ch-system-bc"></a>6.37. Bc-1.06.95
</h1>
<div class="package" lang="en" xml:lang="en">
<p>
The Bc package contains an arbitrary precision numeric processing
language.
</p>
<div class="segmentedlist">
<div class="seglistitem">
<div class="seg">
<strong class="segtitle">Approximate build time:</strong>
<span class="segbody">0.1 SBU</span>
</div>
<div class="seg">
<strong class="segtitle">Required disk space:</strong>
<span class="segbody">4.0 MB</span>
</div>
</div>
</div>
</div>
<div class="installation" lang="en" xml:lang="en">
<h2 class="sect2">
6.37.1. Installation of Bc
</h2>
<p>
First, fix some minor memory leaks in the code:
</p>
<pre class="userinput">
<kbd class="command">patch -Np1 -i ../bc-1.06.95-memory_leak-1.patch</kbd>
</pre>
<p>
Prepare Bc for compilation:
</p>
<pre class="userinput">
<kbd class="command">./configure --prefix=/usr \
--with-readline \
--mandir=/usr/share/man \
--infodir=/usr/share/info</kbd>
</pre>
<div class="variablelist">
<p class="title">
<strong>The meaning of the configure options:</strong>
</p>
<dl class="variablelist">
<dt>
<span class="term"><em class=
"parameter"><code>--with-readline</code></em></span>
</dt>
<dd>
<p>
This option tells Bc to use the <code class=
"filename">readline</code> library that is already installed
on the system rather than using its own readline version.
</p>
</dd>
</dl>
</div>
<p>
Compile the package:
</p>
<pre class="userinput">
<kbd class="command">make</kbd>
</pre>
<p>
To test bc, run the commands below. There is quite a bit of output,
so you may want to redirect it to a file. There are a very small
percentage of tests (10 of 12,144) that will indicate a roundoff
error at the last digit.
</p>
<pre class="userinput">
<kbd class="command">echo "quit" | ./bc/bc -l Test/checklib.b</kbd>
</pre>
<p>
Install the package:
</p>
<pre class="userinput">
<kbd class="command">make install</kbd>
</pre>
</div>
<div class="content" lang="en" xml:lang="en">
<h2 class="sect2">
<a id="contents-bc" name="contents-bc"></a>6.37.2. Contents of Bc
</h2>
<div class="segmentedlist">
<div class="seglistitem">
<div class="seg">
<strong class="segtitle">Installed programs:</strong>
<span class="segbody">bc and dc</span>
</div>
</div>
</div>
<div class="variablelist">
<h3>
Short Descriptions
</h3>
<table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top" />
<col />
</colgroup>
<tbody>
<tr>
<td>
<p>
<a id="bc" name="bc"></a><span class="term"><span class=
"command"><strong>bc</strong></span></span>
</p>
</td>
<td>
<p>
is a command line calculator
</p>
</td>
</tr>
<tr>
<td>
<p>
<a id="dc" name="dc"></a><span class="term"><span class=
"command"><strong>dc</strong></span></span>
</p>
</td>
<td>
<p>
is a reverse-polish command line calculator
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="navfooter">
<ul>
<li class="prev">
<a accesskey="p" href="bash.html" title="Bash-4.3.30">Prev</a>
<p>
Bash-4.3.30
</p>
</li>
<li class="next">
<a accesskey="n" href="libtool.html" title="Libtool-2.4.6">Next</a>
<p>
Libtool-2.4.6
</p>
</li>
<li class="up">
<a accesskey="u" href="chapter06.html" title=
"Chapter&nbsp;6.&nbsp;Installing Basic System Software">Up</a>
</li>
<li class="home">
<a accesskey="h" href="../index.html" title=
"Linux From Scratch - Version 7.7-systemd">Home</a>
</li>
</ul>
</div>
</body>
</html>