mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-09 13:42:56 +00:00
1f958cfad7
These implementations of the bc and dc programs offer a number of advantages compared to the current implementations in the FreeBSD base system: - They do not depend on external large number functions (i.e. no dependency on OpenSSL or any other large number library) - They implements all features found in GNU bc/dc (with the exception of the forking of sub-processes, which the author of this version considers as a security issue). - They are significantly faster than the current code in base (more than 2 orders of magnitude in some of my tests, e.g. for 12345^100000). - They should be fully compatible with all features and the behavior of the current implementations in FreeBSD (not formally verified). - They support POSIX message catalogs and come with localized messages in Chinese, Dutch, English, French, German, Japanese, Polish, Portugueze, and Russian. - They offer very detailed man-pages that provide far more information than the current ones. Approved by: imp Obtained from: https://git.yzena.com/gavin/bc Differential Revision: https://reviews.freebsd.org/D19982
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
dist: bionic
|
|
|
|
language: c
|
|
|
|
arch:
|
|
- amd64
|
|
- arm64
|
|
- ppc64le
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
env:
|
|
global:
|
|
- CODECOV_TOKEN="040ce7eb-5bc7-4040-8324-364f3ef4baa3"
|
|
- CFLAGS="-coverage -DBC_RAND_BUILTIN=0"
|
|
matrix:
|
|
- CONFIGURE_ARGS=-fHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-bfHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-dfHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-fEHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-bfEHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-dfEHNPOg GEN_HOST=1 LONG_BIT=64
|
|
- CONFIGURE_ARGS=-fHNPOg GEN_HOST=1 LONG_BIT=32
|
|
- CONFIGURE_ARGS=-bfHNPOg GEN_HOST=1 LONG_BIT=32
|
|
- CONFIGURE_ARGS=-dfHNPOg GEN_HOST=1 LONG_BIT=32
|
|
- CONFIGURE_ARGS=-fEHNPOg GEN_HOST=1 LONG_BIT=32
|
|
- CONFIGURE_ARGS=-bfEHNPOg GEN_HOST=1 LONG_BIT=32
|
|
- CONFIGURE_ARGS=-dfEHNPOg GEN_HOST=1 LONG_BIT=32
|
|
|
|
before_install:
|
|
- sudo apt-get install -y dc
|
|
- pip install --user codecov
|
|
|
|
before_script:
|
|
- curl -o tests/bc/scripts/timeconst.bc https://raw.githubusercontent.com/torvalds/linux/master/kernel/time/timeconst.bc
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
script:
|
|
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then ./configure.sh "$CONFIGURE_ARGS" && make -j4 && make -j4 test ; fi
|