29a30,32
> from m5.util import compareVersions
> from m5.util.terminal import termcap
>
30a34,40
> if compareVersions(env['GCC_VERSION'], '5.0') < 0:
> print(termcap.Yellow + termcap.Bold +
> 'Warning: Disabling systemc on gcc versions less than 5.0.' +
> termcap.Normal)
> env['USE_SYSTEMC'] = False
> Return()
>