The bc package contains an arbitrary precision numeric processing language.
Starting with linux-3.9 the bc program is needed to build the linux kernel. It is been moved to LFS for LFS-7.4.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://alpha.gnu.org/gnu/bc/bc-1.06.95.tar.bz2
Download (FTP): ftp://alpha.gnu.org/gnu/bc/bc-1.06.95.tar.bz2
Download MD5 sum: 5126a721b73f97d715bb72c13c889035
Download size: 288 KB
Estimated disk space required: 3 MB
Estimated build time: less than 0.1 SBU (0.2 SBU if running the testsuite)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/bc
Install bc by running the following commands:
./configure --prefix=/usr --with-readline && make
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.
echo "quit" | ./bc/bc -l Test/checklib.b
Now, as the root
user:
make install
--with-readline
: This
option enables Readline support in
interactive mode.
Last updated on 2013-09-01 07:04:53 -0700