From 27a3ac1fe3d5d8a5fd809d373be765ed351f33d9 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Tue, 21 Nov 2023 18:57:02 +0300 Subject: [PATCH] bytebeat_compiler.py: change `-Werror` to `-Wextra` --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index e433e85..8b3f017 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 -Werror -Wpedantic", + "CC_FLAGS": "-Os -Wall -Wextra -Wpedantic", "INPUT_FILE": PATHS["substitute"], "OUTPUT_FILE": PATHS["output"] }