8.13.2. Contents of Bc
              Installed programs:
              bc and dc
            
          The Bc package contains an arbitrary precision numeric processing language.
Prepare Bc for compilation:
CC=gcc ./configure --prefix=/usr -G -O3
The meaning of the configure options:
CC=gcc
            This parameter specifies the compiler to use.
-O3
            Specify the optimization to use.
-G
            Omit parts of the test suite that won't work without a GNU bc present.
Compile the package:
make
To test bc, run:
make test
Install the package:
make install