rpn/GENERATION.md
2022-02-28 17:39:13 +01:00

756 B

Generation

rpn is proposed for GNU/Linux.

It can be generated following the steps below.

rpn is dynamically linked against GNU MP and GNU MPFR and integrates linenoise-ng and mpreal code as git submodules.

Generate and install under Ubuntu 20.04 LTS

sudo apt install git cmake g++ libmpfr6 libmpfr-dev
git clone https://github.com/louisrubet/rpn/ 
mkdir -p rpn/build && cd rpn/build
cmake ..
make -j
sudo make install

Generate and install under Fedora 35

sudo dnf install git cmake g++ mpfrf mpfr-devel
git clone https://github.com/louisrubet/rpn/ 
mkdir -p rpn/build && cd rpn/build
cmake ..
make -j
sudo make install