pss-total/ngen.toml

18 lines
312 B
TOML
Raw Permalink Normal View History

2024-05-24 21:54:17 +00:00
[config]
compile_commands = true
[targets.main]
outfile = "pss-total"
compiler_flags = ["-I."]
sources = [
"src/main.c",
]
[targets.debug]
compiler_flags = ["-fsanitize=address", "-O0", "-g"]
linker_flags = ["-fsanitize=address"]
[targets.release]
compiler_flags = ["-flto", "-O2"]
linker_flags = ["-flto"]