From 61c162f5f584ae8e50f7ca9941a29665dc7a0dbc Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Tue, 23 Feb 2021 16:50:26 +0000 Subject: [PATCH] Update 'INSTALL.md' --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 7c7e5844f..0b2f084e7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -44,10 +44,10 @@ cd hush3 ## Building On Ubuntu 16.04 and older systems -Some older compilers may not be able to compile modern code, such as gcc 5.4 which comes with Ubuntu 16.04 by default. Here is how to install gcc 7 on Ubuntu 16.04: +Some older compilers may not be able to compile modern code, such as gcc 5.4 which comes with Ubuntu 16.04 by default. Here is how to install gcc 7 on Ubuntu 16.04. Run these commands as root: ``` -sudo add-apt-repository ppa:ubuntu-toolchain-r/test && \ +add-apt-repository ppa:ubuntu-toolchain-r/test && \ apt update && \ apt-get install -y gcc-7 g++-7 && \ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 60 && \