bytebeat_compiler.py: add more `CFLAGS`

This commit is contained in:
Intel A80486DX2-66 2024-01-27 14:01:49 +03:00
parent 2b2786ab2c
commit 6c16e2911c
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ PATHS["fwrite_le"] = path_join(".", PATHS["fwrite_le"])
# Default parameters
DEFAULT_PARAMETERS = {
"CC": "gcc",
"CFLAGS": "-Ofast -Wall -Wextra -Wpedantic -Wno-unused-variable -Wno-unused-but-set-variable -Wno-dangling-else -Wno-parentheses -std=c99",
"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"]
}