Lines Matching refs:binary
20 utility to view binary section sizes, and optionally compare the section sizes
25 A typical report comparing the size of a new binary against a reference looks
45 def run_size_linux(binary):
47 Run size on a single binary.
50 binary (str): The path of the binary file to process.
59 args = ["size", "--format=sysv", binary]
76 def run_size_macos(binary):
78 Run size on a single binary.
81 binary (str): The path of the binary file to process.
90 args = ["size", "-m", binary]
144 help="The new binary to size")
147 help="The reference binary to compare against")
162 # runtime later, e.g. if the binary is not of the correct format