kirby64/tools/scrub_undefined_syms.py
2020-08-12 22:01:57 -04:00

16 lines
275 B
Python

import sys, os
f = open("undefined_syms.txt", 'r')
fl = f.readlines()
f.close()
with open(sys.argv[1]) as f:
for line in f:
if len(line.split()) > 0:
sym = line.split()[1][:-1]
# for usym in fl:
# if sym in usym:
print(sym)
# print(fl)