mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
29 lines
456 B
TOML
29 lines
456 B
TOML
[default_config]
|
|
version = "0.10.0"
|
|
assembler = "gas"
|
|
instruction_set = "riscv"
|
|
|
|
[default_config.opts]
|
|
compiler = "zig"
|
|
compile_flags_txt = [
|
|
"cc",
|
|
"-x",
|
|
"assembler-with-cpp",
|
|
"-g",
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-pedantic",
|
|
"-pedantic-errors",
|
|
"-std=c2y",
|
|
"-target",
|
|
"aarch64-linux-musl",
|
|
]
|
|
diagnostics = true
|
|
default_diagnostics = false
|
|
|
|
[project.opts]
|
|
compiler = "zig"
|
|
compile_flags_txt = [ ]
|
|
diagnostics = true
|
|
default_diagnostics = false
|