1
0

bytebeat_compiler.py: show executed command

This commit is contained in:
Intel A80486DX2-66 2023-12-30 15:32:41 +03:00
parent e0ac4c3bf9
commit f9ce5faa60
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

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