An in-progress virtual stack machine.
QUI requires GCC, MAKE and SDL2 to be installed on the system.
To build QUI, simply type the following command line on the root directory of the QUI source code repository (assuming all dependencies are installed):
$ make
This will compile QUI with no debugging information and with compiler optimizations enabled. To enable debugging information and disable optimizations, the user can specify DEBUG=1
in the command line above, such as:
$ DEBUG=1 OPTIMIZE=0 make
In order to install QUI, type:
$ make install
To install it using in a separate location other the default ${HOME}/.local/
, type:
$ PREFIX=/usr/local/ make install