commit | e52288854530bb73689a2f8499c115a7cad6b13e | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Thu Jan 10 16:08:04 2019 -0700 |
committer | Gavin Howard <yzena.tech@gmail.com> | Thu Jan 10 16:08:04 2019 -0700 |
tree | 8c655674e227131c293ef765ee26e99655cd4a7f | |
parent | 7de4f2293458c2e37eaa65a424f1af116a77a11d [diff] |
Fix another crash and do some style fixes in bc parsing
bc
This is an implementation of POSIX bc
that implements GNU bc
extensions, as well as the period (.
) extension for the BSD flavor of bc
.
For more information, see this bc
's full manual.
This bc
also includes an implementation of dc
in the same binary, accessible via a symbolic link, which implements all FreeBSD and GNU extensions. If a single dc
binary is desired, bc
can be copied and renamed to dc
. The !
command is omitted; I believe this is poses security concerns and that such functionality is unnecessary.
For more information, see the dc
's full manual.
This bc
is Free and Open Source Software (FOSS). It is offered under the BSD 0-clause License. Full license text may be found in the LICENSE.md
file.
This bc
should build unmodified on any POSIX-compliant system.
For more complex build requirements than the ones below, see the build manual.
After building, make install
will install the bc
in /usr/local
.
For the default build with optimization, use the following commands in the root directory:
./configure.sh -O3 make
For debug builds, use the following commands in the root directory:
./configure.sh -g make
It is possible to download pre-compiled binaries for a wide list of platforms, including Linux- and Windows-based systems, from xstatic. This link always points to the latest release of bc
.
This bc
is robust.
It is well-tested, fuzzed, and fully standards-compliant (though not certified) with POSIX bc
. The math has been tested with 30+ million random problems, so it is as correct as I can make it.
This bc
can be used as a drop-in replacement for any existing bc
. This bc
is also compatible with MinGW toolchains, though history is not supported on Windows.
This bc
has similar performance to GNU bc
. It is slightly slower on certain operations and slightly faster on others. Full benchmark data are not yet available.
To see what algorithms this bc
uses, see the algorithms manual.
Other projects based on this bc are:
busybox bc
. The busybox maintainers have made their own changes, so any bugs in the busybox bc
should be reported to them.
toybox bc
The maintainer has also made his own changes, so bugs in the toybox bc
should be reported there.
This bc
is written in pure ISO C99, using POSIX 2008 API's.
This bc
uses the commit message guidelines laid out in this blog post.
This bc
uses semantic versioning.
Items labelled with (maintainer use only)
are not included in release source tarballs.
Files:
.clang-format Clang-format file, used only for cutting a release for busybox (maintainer use only). configure.sh The configure script. install.sh Install script. karatsuba.py Script for package maintainers to find the optimal Karatsuba number. LICENSE.md A Markdown form of the BSD 0-clause License. link.sh A script to link dc to bc. Makefile.in The Makefile template. NOTICE.md List of contributors and copyright owners. RELEASE.md A checklist for making a release (maintainer use only). release.sh A script to run during the release process (maintainer use only). safe-install.sh Safe install script from musl libc.
Folders:
dist Files to cut toybox/busybox releases (maintainer use only). gen The `bc` math library, help texts, and code to generate C source. include All header files. manuals Manuals for both programs. src All source code. tests All tests.