Vendor dependencies

Let's see how I like this workflow.
This commit is contained in:
John Doty 2022-12-19 08:27:18 -08:00
parent 34d1830413
commit 9c435dc440
7500 changed files with 1665121 additions and 99 deletions

21
vendor/cxx/tools/buck/toolchains/BUCK vendored Normal file
View file

@ -0,0 +1,21 @@
load("@prelude//toolchains:cxx.bzl", "system_cxx_toolchain")
load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain")
load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
system_cxx_toolchain(
name = "cxx",
visibility = ["PUBLIC"],
)
system_python_bootstrap_toolchain(
name = "python_bootstrap",
visibility = ["PUBLIC"],
)
system_rust_toolchain(
name = "rust",
default_edition = None,
rustc_flags = ["-Clink-arg=-fuse-ld=lld"],
rustdoc_flags = ["-Zunstable-options"], # doc builds use unstable '--extern-html-root-url'
visibility = ["PUBLIC"],
)