1
0

bytebeat_compiler.py: flush before calling command

This commit is contained in:
Intel A80486DX2-66 2024-01-02 18:14:04 +03:00
parent 8327678c44
commit 9b9a4d9631
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -169,5 +169,5 @@ if __name__ == "__main__":
# Let the system execute aliases by calling os.system
command = " ".join([CC, CFLAGS, INPUT_FILE, PATHS["fwrite_le"], "-o",
OUTPUT_FILE])
print(command)
print(command, flush=True)
system(command)