xref: /freebsd/contrib/bc/README.md (revision d500a85e640d1cd270747c12e17c511b53864436)
1# `bc`
2
3[![Coverity Scan Build Status][17]][18]
4
5***WARNING: This project has moved to [https://git.yzena.com/][20] for [these
6reasons][21], though GitHub will remain a mirror.***
7
8This is an implementation of the [POSIX `bc` calculator][12] that implements
9[GNU `bc`][1] extensions, as well as the period (`.`) extension for the BSD
10flavor of `bc`.
11
12For more information, see this `bc`'s full manual.
13
14This `bc` also includes an implementation of `dc` in the same binary, accessible
15via a symbolic link, which implements all FreeBSD and GNU extensions. (If a
16standalone `dc` binary is desired, `bc` can be copied and renamed to `dc`.) The
17`!` command is omitted; I believe this poses security concerns and that such
18functionality is unnecessary.
19
20For more information, see the `dc`'s full manual.
21
22This `bc` is Free and Open Source Software (FOSS). It is offered under the BSD
232-clause License. Full license text may be found in the [`LICENSE.md`][4] file.
24
25## Prerequisites
26
27This `bc` only requires either:
28
291.	Windows 10 or later, or
302.	A C99-compatible compiler and a (mostly) POSIX 2008-compatible system with
31	the XSI (X/Open System Interfaces) option group.
32
33Since POSIX 2008 with XSI requires the existence of a C99 compiler as `c99`, any
34POSIX and XSI-compatible system will have everything needed.
35
36POSIX-compatible systems that are known to work:
37
38* Linux
39* FreeBSD
40* OpenBSD
41* NetBSD
42* Mac OSX
43* Solaris* (as long as the Solaris version supports POSIX 2008)
44* AIX
45* HP-UX* (except for history)
46
47In addition, there is compatibility code to make this `bc` work on Windows.
48
49Please submit bug reports if this `bc` does not build out of the box on any
50system.
51
52## Build
53
54### Windows
55
56There is no guarantee that this `bc` will work on any version of Windows earlier
57than Windows 10 (I cannot test on earlier versions), but it is guaranteed to
58work on Windows 10 at least.
59
60Also, if building with MSBuild, the MSBuild bundled with Visual Studio is
61required.
62
63**Note**: Unlike the POSIX-compatible platforms, only one build configuration is
64supported on Windows: extra math and prompt enabled, history and NLS (locale
65support) disabled, with both calculators built.
66
67#### `bc`
68
69To build `bc`, you can open the `bc.sln` file in Visual Studio, select the
70configuration, and build.
71
72You can also build using MSBuild with the following from the root directory:
73
74```
75msbuild -property:Configuration=<config> bc.sln
76```
77
78where `<config>` is either one of `Debug` or `Release`.
79
80#### `bcl` (Library)
81
82To build the library, you can open the `bcl.sln` file in Visual Studio, select
83the configuration, and build.
84
85You can also build using MSBuild with the following from the root directory:
86
87```
88msbuild -property:Configuration=<config> bcl.sln
89```
90
91where `<config>` is either one of `Debug` or `Release`.
92
93### POSIX-Compatible Systems
94
95This `bc` should build unmodified on any POSIX-compliant system or on Windows
96starting with Windows 10 (though earlier versions may work).
97
98For more complex build requirements than the ones below, see the
99[build manual][5].
100
101On POSIX-compatible systems, `bc` is built as `bin/bc` and `dc` is built as
102`bin/dc` by default. On Windows, they are built as `Release/bc/bc.exe` and
103`Release/bc/dc.exe`.
104
105**Note**: On Windows, `dc.exe` is just copied from `bc.exe`; it is not linked.
106Patches are welcome for a way to do that.
107
108#### Default
109
110For the default build with optimization, use the following commands in the root
111directory:
112
113```
114./configure.sh -O3
115make
116```
117
118#### One Calculator
119
120To only build `bc`, use the following commands:
121
122```
123./configure.sh --disable-dc
124make
125```
126
127To only build `dc`, use the following commands:
128
129```
130./configure.sh --disable-bc
131make
132```
133
134#### Debug
135
136For debug builds, use the following commands in the root directory:
137
138```
139./configure.sh -g
140make
141```
142
143#### Install
144
145To install, use the following command:
146
147```
148make install
149```
150
151By default, `bc` and `dc` will be installed in `/usr/local`. For installing in
152other locations, use the `PREFIX` environment variable when running
153`configure.sh` or pass the `--prefix=<prefix>` option to `configure.sh`. See the
154[build manual][5], or run `./configure.sh --help`, for more details.
155
156#### Library
157
158This `bc` does provide a way to build a math library with C bindings. This is
159done by the `-a` or `--library` options to `configure.sh`:
160
161```
162./configure.sh -a
163```
164
165When building the library, the executables are not built. For more information,
166see the [build manual][5].
167
168The library API can be found in [`manuals/bcl.3.md`][26] or `man bcl` once the
169library is installed.
170
171The library is built as `bin/libbcl.a` on POSIX-compatible systems or as
172`Release/bcl/bcl.lib` on Windows.
173
174#### Package and Distro Maintainers
175
176##### Recommended Compiler
177
178When I ran benchmarks with my `bc` compiled under `clang`, it performed much
179better than when compiled under `gcc`. I recommend compiling this `bc` with
180`clang`.
181
182I also recommend building this `bc` with C11 if you can because `bc` will detect
183a C11 compiler and add `_Noreturn` to any relevant function(s).
184
185##### Recommended Optimizations
186
187I wrote this `bc` with Separation of Concerns, which means that there are many
188small functions that could be inlined. However, they are often called across
189file boundaries, and the default optimizer can only look at the current file,
190which means that they are not inlined.
191
192Thus, because of the way this `bc` is built, it will automatically be slower
193than other `bc` implementations when running scripts with no math. (My `bc`'s
194math is *much* faster, so any non-trivial script should run faster in my `bc`.)
195
196Some, or all, of the difference can be made up with the right optimizations. The
197optimizations I recommend are:
198
1991.	`-O3`
2002.	`-flto` (link-time optimization)
201
202in that order.
203
204Link-time optimization, in particular, speeds up the `bc` a lot. This is because
205when link-time optimization is turned on, the optimizer can look across files
206and inline *much* more heavily.
207
208However, I recommend ***NOT*** using `-march=native`. Doing so will reduce this
209`bc`'s performance, at least when building with link-time optimization. See the
210[benchmarks][19] for more details.
211
212##### Stripping Binaries
213
214By default, non-debug binaries are stripped, but stripping can be disabled with
215the `-T` option to `configure.sh`.
216
217##### Using This `bc` as an Alternative
218
219If this `bc` is packaged as an alternative to an already existing `bc` package,
220it is possible to rename it in the build to prevent name collision. To prepend
221to the name, just run the following:
222
223```
224EXECPREFIX=<some_prefix> ./configure.sh
225```
226
227To append to the name, just run the following:
228
229```
230EXECSUFFIX=<some_suffix> ./configure.sh
231```
232
233If a package maintainer wishes to add both a prefix and a suffix, that is
234allowed.
235
236**Note**: The suggested name (and package name) when `bc` is not available is
237`bc-gh`.
238
239##### Karatsuba Number
240
241Package and distro maintainers have one tool at their disposal to build this
242`bc` in the optimal configuration: `karatsuba.py`.
243
244This script is not a compile-time or runtime prerequisite; it is for package and
245distro maintainers to run once when a package is being created. It finds the
246optimal Karatsuba number (see the [algorithms manual][7] for more information)
247for the machine that it is running on.
248
249The easiest way to run this script is with `make karatsuba`.
250
251If desired, maintainers can also skip running this script because there is a
252sane default for the Karatsuba number.
253
254## Status
255
256This `bc` is robust.
257
258It is well-tested, fuzzed, and fully standards-compliant (though not certified)
259with POSIX `bc`. The math has been tested with 40+ million random problems, so
260it is as correct as I can make it.
261
262This `bc` can be used as a drop-in replacement for any existing `bc`. This `bc`
263is also compatible with MinGW toolchains, though history is not supported on
264Windows.
265
266In addition, this `bc` is considered complete; i.e., there will be no more
267releases with additional features. However, it *is* actively maintained, so if
268any bugs are found, they will be fixed in new releases. Also, additional
269translations will also be added as they are provided.
270
271## Comparison to GNU `bc`
272
273This `bc` compares favorably to GNU `bc`.
274
275* This `bc` builds natively on Windows.
276* It has more extensions, which make this `bc` more useful for scripting.
277* This `bc` is a bit more POSIX compliant.
278* It has a much less buggy parser. The GNU `bc` will give parse errors for what
279  is actually valid `bc` code, or should be. For example, putting an `else` on
280  a new line after a brace can cause GNU `bc` to give a parse error.
281* This `bc` has fewer crashes.
282* GNU `bc` calculates the wrong number of significant digits for `length(x)`.
283* GNU `bc` will sometimes print numbers incorrectly. For example, when running
284  it on the file `tests/bc/power.txt` in this repo, GNU `bc` gets all the right
285  answers, but it fails to wrap the numbers at the proper place when outputting
286  to a file.
287* This `bc` is faster. (See [Performance](#performance).)
288
289### Performance
290
291Because this `bc` packs more than `1` decimal digit per hardware integer, this
292`bc` is faster than GNU `bc` and can be *much* faster. Full benchmarks can be
293found at [manuals/benchmarks.md][19].
294
295There is one instance where this `bc` is slower: if scripts are light on math.
296This is because this `bc`'s intepreter is slightly slower than GNU `bc`, but
297that is because it is more robust. See the [benchmarks][19].
298
299## Algorithms
300
301To see what algorithms this `bc` uses, see the [algorithms manual][7].
302
303## Locales
304
305Currently, there is no locale support on Windows.
306
307Additionally, this `bc` only has support for English (and US English), French,
308German, Portuguese, Dutch, Polish, Russian, Japanese, and Chinese locales.
309Patches are welcome for translations; use the existing `*.msg` files in
310`locales/` as a starting point.
311
312In addition, patches for improvements are welcome; the last two messages in
313Portuguese were made with Google Translate, and the Dutch, Polish, Russian,
314Japanese, and Chinese locales were all generated with [DeepL][22].
315
316The message files provided assume that locales apply to all regions where a
317language is used, but this might not be true for, e.g., `fr_CA` and `fr_CH`.
318Any corrections or a confirmation that the current texts are acceptable for
319those regions would be appreciated, too.
320
321## Other Projects
322
323Other projects based on this bc are:
324
325* [busybox `bc`][8]. The busybox maintainers have made their own changes, so any
326  bugs in the busybox `bc` should be reported to them.
327
328* [toybox `bc`][9]. The maintainer has also made his own changes, so bugs in the
329  toybox `bc` should be reported there.
330
331* [FreeBSD `bc`][23]. While the `bc` in FreeBSD is kept up-to-date, it is better
332  to [report bugs there][24], as well as [submit patches][25], and the
333  maintainers of the package will contact me if necessary.
334
335## Language
336
337This `bc` is written in pure ISO C99, using POSIX 2008 APIs with custom Windows
338compatibility code.
339
340## Commit Messages
341
342This `bc` uses the commit message guidelines laid out in [this blog post][10].
343
344## Semantic Versioning
345
346This `bc` uses [semantic versioning][11].
347
348## Contents
349
350Items labeled with `(maintainer use only)` are not included in release source
351tarballs.
352
353Files:
354
355	.gitignore           The git ignore file (maintainer use only).
356	.gitattributes       The git attributes file (maintainer use only).
357	bc.sln               The Visual Studio solution file for bc.
358	bc.vcxproj           The Visual Studio project file for bc.
359	bc.vcxproj.filters   The Visual Studio filters file for bc.
360	bcl.sln              The Visual Studio solution file for bcl.
361	bcl.vcxproj          The Visual Studio project file for bcl.
362	bcl.vcxproj.filters  The Visual Studio filters file for bcl.
363	configure            A symlink to configure.sh to make packaging easier.
364	configure.sh         The configure script.
365	functions.sh         A script with functions used by other scripts.
366	install.sh           Install script.
367	karatsuba.py         Script to find the optimal Karatsuba number.
368	LICENSE.md           A Markdown form of the BSD 2-clause License.
369	link.sh              A script to link dc to bc.
370	locale_install.sh    A script to install locales, if desired.
371	locale_uninstall.sh  A script to uninstall locales.
372	Makefile.in          The Makefile template.
373	manpage.sh           Script to generate man pages from markdown files
374	                     (maintainer use only).
375	NOTICE.md            List of contributors and copyright owners.
376	RELEASE.md           A checklist for making a release (maintainer use only).
377	release.sh           A script to test for release (maintainer use only).
378	safe-install.sh      Safe install script from musl libc.
379
380Folders:
381
382	gen      The bc math library, help texts, and code to generate C source.
383	include  All header files.
384	locales  Locale files, in .msg format. Patches welcome for translations.
385	manuals  Manuals for both programs.
386	src      All source code.
387	tests    All tests.
388
389[1]: https://www.gnu.org/software/bc/
390[4]: ./LICENSE.md
391[5]: ./manuals/build.md
392[7]: ./manuals/algorithms.md
393[8]: https://git.busybox.net/busybox/tree/miscutils/bc.c
394[9]: https://github.com/landley/toybox/blob/master/toys/pending/bc.c
395[10]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
396[11]: http://semver.org/
397[12]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html
398[17]: https://img.shields.io/coverity/scan/16609.svg
399[18]: https://scan.coverity.com/projects/gavinhoward-bc
400[19]: ./manuals/benchmarks.md
401[20]: https://git.yzena.com/gavin/bc
402[21]: https://gavinhoward.com/2020/04/i-am-moving-away-from-github/
403[22]: https://www.deepl.com/translator
404[23]: https://cgit.freebsd.org/src/tree/contrib/bc
405[24]: https://bugs.freebsd.org/
406[25]: https://reviews.freebsd.org/
407[26]: ./manuals/bcl.3.md
408