1
0

bytebeat_compiler.py: change flag -Os to -Ofast

This commit is contained in:
Intel A80486DX2-66 2023-11-25 17:12:11 +03:00
parent 476160c347
commit 73710ae208
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -23,7 +23,7 @@ PATHS["output"] = path_join(PATHS["build_dir"], PATHS["output"])
# Default parameters
DEFAULT_PARAMETERS = {
"CC": "gcc",
"CC_FLAGS": "-Os -Wall -Wextra -Wpedantic",
"CC_FLAGS": "-Ofast -Wall -Wextra -Wpedantic",
"INPUT_FILE": PATHS["substitute"],
"OUTPUT_FILE": PATHS["output"]
}