diff options
Diffstat (limited to '')
-rw-r--r-- | INSTALL | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,7 +1,7 @@ Requirements ------------ -You will need a C++11 compiler and the compression library lzlib installed. -(gcc 3.3.6 or newer is recommended). +You will need a C++98 compiler with support for 'long long', and the +compression library lzlib installed. (gcc 3.3.6 or newer is recommended). I use gcc 6.1.0 and 3.3.6, but the code should compile with any standards compliant compiler. @@ -10,6 +10,10 @@ Lzlib must be version 1.12 or newer. Gcc is available at http://gcc.gnu.org. Lzlib is available at http://www.nongnu.org/lzip/lzlib.html. +The operating system must allow signal handlers read access to objects with +static storage duration so that the cleanup handler for Control-C can delete +the partial output file in '-z, --compress' mode. + Procedure --------- |