Commit 5c82c62d authored by Daniel Friesel's avatar Daniel Friesel
Browse files

size, nfpvalues: accept multi-command size executables (e.g. using wine)

parent 965aa3ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ def main(size_executable, rom_sections, ram_sections):
    ram_sections = ram_sections.split(",")

    status = subprocess.run(
        [size_executable, "-A", "build/system.elf"],
        size_executable.split() + ["-A", "build/system.elf"],
        stdout=subprocess.PIPE,
        stderr=subprocess.PIPE,
        universal_newlines=True,
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ def main(size_executable, rom_sections, ram_sections):
    ram_sections = ram_sections.split(",")

    status = subprocess.run(
        [size_executable, "-A", "build/system.elf"],
        size_executable.split() + ["-A", "build/system.elf"],
        stdout=subprocess.PIPE,
        stderr=subprocess.PIPE,
        universal_newlines=True,