| D | extract_symbols.py | 29 # Windows, waiting for the entire output to be ready can take a significant 32 def dumpbin_get_symbols(lib): argument 33 process = subprocess.Popen(['dumpbin','/symbols',lib], bufsize=1, 44 def nm_get_symbols(lib): argument 45 process = subprocess.Popen(['nm',lib], bufsize=1, 56 def readobj_get_symbols(lib): argument 57 process = subprocess.Popen(['llvm-readobj','-symbols',lib], bufsize=1, 62 # When looking through the output of llvm-readobj we expect to see Name, 81 # Define functions which determine if the target is 32-bit Windows (as that's 84 def dumpbin_is_32bit_windows(lib): argument [all …]
|