Remove reference to fastcomp-latest. NFC (#1164)

fastcomp can only be install using explicit versions names so this name
doesn't work.
This commit is contained in:
Sam Clegg
2023-01-05 09:17:17 -08:00
committed by GitHub
parent 9b87e80f3a
commit 58904e9b74

View File

@@ -3070,13 +3070,11 @@ def main(args):
if (LINUX or MACOS or WINDOWS) and (ARCH == 'x86' or ARCH == 'x86_64'):
print('The *recommended* precompiled SDK download is %s (%s).' % (find_latest_version(), find_latest_hash()))
print()
print('To install/activate it, use one of:')
print(' latest [default (llvm) backend]')
print(' latest-fastcomp [legacy (fastcomp) backend]')
print('To install/activate it use:')
print(' latest')
print('')
print('Those are equivalent to installing/activating the following:')
print('This is equivalent to installing/activating:')
print(' %s %s' % (find_latest_version(), installed_sdk_text(find_latest_sdk('upstream'))))
print(' %s-fastcomp %s' % (find_latest_version(), installed_sdk_text(find_latest_sdk('fastcomp'))))
print('')
else:
print('Warning: your platform does not have precompiled SDKs available.')