The PE/DLL format has a limit on 64k exported symbols per DLL; make sure to check this. Differential Revision: https://reviews.llvm.org/D86701
6 lines
89 B
Python
6 lines
89 B
Python
import sys
|
|
|
|
print("EXPORTS")
|
|
for i in range(0, int(sys.argv[1])):
|
|
print("f%d=f" % (i))
|