From 73710ae208ed9e165019053896e387d7e1ea6ce2 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sat, 25 Nov 2023 17:12:11 +0300 Subject: [PATCH] bytebeat_compiler.py: change flag `-Os` to `-Ofast` --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 8b3f017..59d8eb3 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -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"] }