c_compiler = ["gcc"]
cpp_compiler = ["g++"]
nasm_assembler = ["nasm", "-felf64"]
static_linker = ["ar", "qc"]
exe_linker = ["g++"]
[profile.Debug]
c_compile_flags = ["-Og", "-g3", "-D_DEBUG"]
cpp_compile_flags = ["-Og", "-g3", "-D_DEBUG"]
nasm_assemble_flags = ["-O0", "-Xgnu"]
[profile.Release]
c_compile_flags = ["-O3", "-DNDEBUG"]
cpp_compile_flags = ["-O3", "-DNDEBUG"]
nasm_assemble_flags = ["-Ox", "-Xgnu"]