From dbe295ab954c28392567c5a6cea314dccbf06a49 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 8 Feb 2021 00:51:56 -0800 Subject: [PATCH] scons: Remove an extraneous Exit(). This isn't necessary after error() which exits on its own. Change-Id: Icad08c1badc73fa8f41013cc69d6cc5a96ff8fdb Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40961 Tested-by: kokoro Reviewed-by: Gabe Black Maintainer: Gabe Black --- SConstruct | 1 - 1 file changed, 1 deletion(-) diff --git a/SConstruct b/SConstruct index ed27e5861f..915c1123f8 100755 --- a/SConstruct +++ b/SConstruct @@ -353,7 +353,6 @@ if main['GCC']: if compareVersions(main['CXXVERSION'], "5") < 0: error('gcc version 5 or newer required.\n' 'Installed version:', main['CXXVERSION']) - Exit(1) # Add the appropriate Link-Time Optimization (LTO) flags # unless LTO is explicitly turned off.