1
0

bytebeat_compiler.py: change -Werror to -Wextra

This commit is contained in:
Intel A80486DX2-66 2023-11-21 18:57:02 +03:00
parent 7a2073c2ef
commit 27a3ac1fe3
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 -Werror -Wpedantic",
"CC_FLAGS": "-Os -Wall -Wextra -Wpedantic",
"INPUT_FILE": PATHS["substitute"],
"OUTPUT_FILE": PATHS["output"]
}