Contents of Bc
Installed programs: bc and dc
The Bc package contains an arbitrary precision numeric processing language.
Prepare Bc for compilation:
CC='gcc -std=c99' ./configure --prefix=/usr -G -O3 -r
The meaning of the configure options:
CC='gcc -std=c99'This parameter specifies the compiler and C standard to use.
-GOmit parts of the test suite that won't work until the bc program has been installed.
-O3Specify the optimization to use.
-rEnable the use of Readline to improve the line editing feature of bc.
Compile the package:
make
To test bc, run:
make test
Install the package:
make install