diff --git a/.gitignore b/.gitignore index 485968d9c56ff5a3a37c74b331704914da82011c..1e81f0de3b28759601bdb6ff90101f56884e1fe6 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,6 @@ Session.vim !/tests/run-make/thumb-none-qemu/example/.cargo ## Configuration -/config.toml /Makefile config.mk config.stamp diff --git a/config.toml b/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..2f0cf9a2524ee1eec85871151252a6f70da126a5 --- /dev/null +++ b/config.toml @@ -0,0 +1,43 @@ +profile = "compiler" +changelog-seen = 2 + +[llvm] +download-ci-llvm = false +targets = "X86;AArch64;ARM" + +[build] +target = ["x86_64-unknown-linux-gnu"] +submodules = false +compiler-docs = false +extended = true +tools = [ + "clippy", +] +docs = false +vendor = true +#verbose = 1 +#sanitizers = true +#profiler = true + +[rust] +optimize = true +codegen-units = 1 +split-debuginfo = "packed" +lto = "thin-local" +backtrace = false +description = "xxxxx" +channel = "nightly" +#strip = true +#stack-protector = "all" + +[install] +bindir = "bin" +libdir = "lib" + +[target.x86_64-unknown-linux-gnu] + +[dist] +compression-formats = ["gz"] +#include-mingw-linker = false + +