From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Chou Date: Sun, 30 Jun 2019 10:06:36 +0800 Subject: [U-Boot] [PATCH] tools: buildman: add gcc-8.1.0 support In-Reply-To: <20190630020636.31352-1-thomas@wytron.com.tw> References: <20190630020636.31352-1-thomas@wytron.com.tw> Message-ID: <20190630020636.31352-2-thomas@wytron.com.tw> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add gcc-8.1.0 support to buildman toolchain. The old gcc-7.3.0 has shared libraries issues on Ubuntu 18.04 and 19.04. Signed-off-by: Thomas Chou --- tools/buildman/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index a65737fdf8..3ad18c472e 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -460,7 +460,7 @@ class Toolchains: """ arch = command.OutputOneLine('uname', '-m') base = 'https://www.kernel.org/pub/tools/crosstool/files/bin' - versions = ['7.3.0', '6.4.0', '4.9.4'] + versions = ['8.1.0', '7.3.0', '6.4.0', '4.9.4'] links = [] for version in versions: url = '%s/%s/%s/' % (base, arch, version) -- 2.20.1