commit | b49a1c38587173c6be92d113d43bc3e7359d7420 | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Fri Mar 30 00:50:42 2018 -0600 |
committer | Gavin Howard <yzena.tech@gmail.com> | Tue Aug 28 17:11:24 2018 -0600 |
tree | 8aa159bcf8d25bfda9abb5bce1f5eefa3fc878c4 | |
parent | 6d94a76553b44eb8afca6d3e50b7f96b051adcf9 [diff] |
Make toybox compile from the release script
This is an implementation of POSIX bc
that implements GNU bc
extensions, as well as the period (.
) extension for the BSD bc.
This bc
is Free and Open Source Software (FOSS). It is licensed under the BSD 0-clause License.
To build, use the following commands:
make release make install
To use a non-default compiler, replace the first command with:
CC=<compiler> make release
To install into a non-default (the default is /usr/local
) prefix, change the second command to:
PREFIX=<prefix> make install
To make a minimum size release, use make minrelease
instead of make release
. To make a debug release, use make reldebug
.
This bc
is in alpha stage, so it is ready for testing in the wild, but it is not ready to be officially distributed as an official part of any project.
This bc
is written in pure ISO C99.
This bc
uses the git workflow described in this post. Developers who want to contribute are encouraged to read that post carefully.
For feature branches, it uses rebase + merge --no-ff
(option 3). It also uses a develop
/master
split. (Main development is on develop
, and master
just points to the latest tagged release to make it easy for users to get the latest release.)
This bc
uses the commit message guidelines laid out in this blog post.
This bc
uses semantic versioning.
Every folder contains a README file which lists the purposes for the files and folders in that directory.
Files:
LICENSE.md A Markdown the BSD 0-clause License. NOTICE.md List of contributors and copyright owners.
Folders:
docs Contains all of the documentation (currently empty). include Contains all of the public header files. src All source code. tests Tests.