Skip to content

Commit

Permalink
Add example config.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
seritools committed Dec 25, 2024
1 parent 8e99671 commit 44a13b9
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions config.rust9x.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Includes one of the default files in src/bootstrap/defaults
change-id = 133207

[llvm]
# Will download LLVM from CI if available on your platform.
download-ci-llvm = true
# NOTE: if you set ↑ to false, disable other LLVM targets to save lots of build time!
# targets = "X86"
# experimental-targets = ""

[build]
build = "x86_64-pc-windows-msvc"
target = [
"i586-rust9x-windows-msvc",
"i686-rust9x-windows-msvc",
"x86_64-rust9x-windows-msvc",
"x86_64-pc-windows-msvc",
]

docs = false

# extended = true
# tools = [
# # "cargo",
# # "clippy",
# "rustdoc",
# # "rustfmt",
# # "rust-analyzer",
# # "rust-analyzer-proc-macro-srv",
# # "analysis",
# "src",
# # "wasm-component-ld",
# # "miri", "cargo-miri" # for dev/nightly channels
# ]

[install]
# for creating a downloadable package: python x.py install, then create and archive this
prefix = "../dist/rust9x"
sysconfdir = "."

[rust]
dist-src = false

# you can override this with -i/--incremental
# incremental = false
# incremental = true

[dist]
src-tarball = false

0 comments on commit 44a13b9

Please sign in to comment.