list sdk depends
This commit is contained in:
4
emsdk
4
emsdk
@@ -2168,6 +2168,7 @@ def main():
|
|||||||
if cmd == 'list':
|
if cmd == 'list':
|
||||||
print('')
|
print('')
|
||||||
show_old = len(sys.argv) >= 3 and sys.argv[2] == '--old'
|
show_old = len(sys.argv) >= 3 and sys.argv[2] == '--old'
|
||||||
|
show_uses = len(sys.argv) >= 3 and sys.argv[2] == '--uses'
|
||||||
has_partially_active_tools = [False] # Use array to work around the lack of being able to mutate from enclosing function.
|
has_partially_active_tools = [False] # Use array to work around the lack of being able to mutate from enclosing function.
|
||||||
if len(tools) > 0:
|
if len(tools) > 0:
|
||||||
def find_tools(needs_compilation):
|
def find_tools(needs_compilation):
|
||||||
@@ -2224,6 +2225,9 @@ def main():
|
|||||||
installed = '\tINSTALLED' if sdk.is_installed() else ''
|
installed = '\tINSTALLED' if sdk.is_installed() else ''
|
||||||
active = '*' if sdk.is_active() else ' '
|
active = '*' if sdk.is_active() else ' '
|
||||||
print(' ' + active + ' {0: <25}'.format(str(sdk)) + installed)
|
print(' ' + active + ' {0: <25}'.format(str(sdk)) + installed)
|
||||||
|
if show_uses:
|
||||||
|
for dep in sdk.uses:
|
||||||
|
print(' -{0: <25}'.format(dep))
|
||||||
print('')
|
print('')
|
||||||
if is_emsdk_sourced_from_github():
|
if is_emsdk_sourced_from_github():
|
||||||
print('The following precompiled SDKs are available for download: (Run "git pull" followed by "./emsdk update-tags" to pull in the latest list)')
|
print('The following precompiled SDKs are available for download: (Run "git pull" followed by "./emsdk update-tags" to pull in the latest list)')
|
||||||
|
|||||||
Reference in New Issue
Block a user