From c9825b912277e27d5e783ad1cf50a1eb68555b41 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 14 Apr 2024 01:38:48 +0300 Subject: [PATCH] bytebeat_compiler.py: use `cc` instead of `gcc` as default compiler --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 0f03fca..7685e43 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -33,7 +33,7 @@ PATHS["fwrite_le"] = path_join(".", PATHS["fwrite_le"]) # Default parameters DEFAULT_PARAMETERS = { - "CC": "gcc", + "CC": "cc", "CFLAGS": "-Ofast -march=native -mtune=native -Wall -Wextra -Wpedantic -pedantic -Wno-unused-variable -Wno-unused-but-set-variable -Wno-dangling-else -Wno-parentheses -std=c99", "INPUT_FILE": PATHS["substitute"], "OUTPUT_FILE": PATHS["output"]