We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2859859 commit 4d0656aCopy full SHA for 4d0656a
tools/building.py
@@ -362,6 +362,8 @@ def make_paths_absolute(f):
362
# The results are populated in nm_cache
363
def llvm_nm_multiple(files):
364
with ToolchainProfiler.profile_block('llvm_nm_multiple'):
365
+ if len(files) == 0:
366
+ return []
367
# Run llvm-nm on files that we haven't cached yet
368
llvm_nm_files = [f for f in files if f not in nm_cache]
369
cmd = [LLVM_NM] + llvm_nm_files
0 commit comments