From 58904e9b74cd74e618903aa25245c8d830528cfe Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 5 Jan 2023 09:17:17 -0800 Subject: [PATCH] Remove reference to fastcomp-latest. NFC (#1164) fastcomp can only be install using explicit versions names so this name doesn't work. --- emsdk.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/emsdk.py b/emsdk.py index df57423..34d7d88 100644 --- a/emsdk.py +++ b/emsdk.py @@ -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.')