aboutsummaryrefslogtreecommitdiff
path: root/lang/rust/Config.in
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2023-02-08 15:18:41 +0100
committerDaniel Golle <daniel@makrotopia.org>2023-03-10 14:24:16 +0000
commit83785a7ce01613ed6408bed4d96bd5eea711bc01 (patch)
tree5ccd70d6be235938d7aeca88a11a1a417973b216 /lang/rust/Config.in
parent772db8c11b6ef3d3930f8c94b8fc073124415d30 (diff)
rust-lang: Add the rust language support
Based on work from Donald Hoskins <grommish@gmail.com>. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'lang/rust/Config.in')
-rw-r--r--lang/rust/Config.in95
1 files changed, 95 insertions, 0 deletions
diff --git a/lang/rust/Config.in b/lang/rust/Config.in
new file mode 100644
index 000000000..490322f48
--- /dev/null
+++ b/lang/rust/Config.in
@@ -0,0 +1,95 @@
+# Rust Language Options
+menu "Compiler Options"
+ visible if PACKAGE_rust
+
+ config RUST_DEBUG
+ bool "Enables Debugging Environment (--enable-debug)"
+
+ config RUST_DOCS
+ bool "Build standard library documentation (--enable-docs)"
+
+ config RUST_COMPILER_DOCS
+ bool "Build compiler documentation (--enable-compiler-docs)"
+
+ config RUST_OPTIMIZE_TESTS
+ bool "Build tests with optimizations (--enable-optimized-tests)"
+
+ config RUST_PARALLEL
+ bool "Build with multi-threaded support (--enable-parallel-compiler)"
+
+ config RUST_VERBOSE_TESTS
+ bool "Enable verbose output when running tests (--enable-verbose-tests)"
+
+ config RUST_CCACHE
+ bool "Build with ccache enabled (--enable-ccache)"
+
+ config RUST_LLVM_STATIC
+ bool "Statically link to libstdc++ to LLVM (--enable-llvm-static-stdccp)"
+
+ config RUST_LLVM_SHARED
+ bool "Prefer shared linking to LLVM (--enable-llvm-link-shared)"
+
+ config RUST_CODEGEN_TESTS
+ bool "Run the src/test/codegen tests (--enable-codegen-tests)"
+
+ config RUST_OPTION_CHECKING
+ bool "Complain about unrecognized options in this configure script (--enable-option-checking)"
+ default y
+
+ config RUST_ENABLE_NINJA
+ bool "Build LLVM using the Ninja generator (--enable-ninja)"
+ default y
+
+ config RUST_LOCKED_DEPS
+ bool "Force Cargo.lock to be up to date (--enable-locked-deps)"
+
+ config RUST_VENDOR
+ bool "Enable usage of vendored Rust crates (--enable-vendor)"
+
+ config RUST_SANITIZERS
+ bool "Build the sanitizer runtimes (asan, lsan, msan, tsan) (--enable-sanitizers)"
+
+ config RUST_DIST_SRC
+ bool "When building tarballs enables building a source tarball (--enable-dist-src)"
+
+ config RUST_CARGO_NATIVE_STATIC
+ bool "Build static native libraries in Cargo (--enable-cargo-native-static)"
+
+ config RUST_PROFILER
+ bool "Build the profiler runtime (--enable-profiler)"
+
+ config RUST_FULL_TOOLS
+ bool "Build all tools (--enable-full-tools)"
+
+ config RUST_MISSING_TOOLS
+ bool "Allow failures when building tools (--enable-missing-tools)"
+ default y
+
+ config RUST_USE_LIBCXX
+ bool "Build LLVM with libc++ (--enable-use-libcxx)"
+
+ config RUST_CONTROL_FLOW_GUARD
+ bool "Enable Control Flow Guard (--enable-control-flow-guard)"
+
+ config RUST_OPTIMIZE_LLVM
+ bool "Build optimized LLVM (--enable-optimize-llvm)"
+ default y
+
+ config RUST_LLVM_ASSERTIONS
+ bool "Build LLVM with assertions (--enable-llvm-assertions)"
+
+ config RUST_DEBUG_ASSERTIONS
+ bool "Build with debugging assertions (--enable-debug-assertions)"
+
+ config RUST_LLVM_RELEASE_DEBUGINFO
+ bool "Build LLVM with debugger metadata (--enable-llvm-release-debuginfo)"
+
+ config RUST_MANAGE_SUBMODULES
+ bool "Let the build manage the git submodules (--enable-manage-submodules)"
+ default y
+
+ config RUST_FULL_BOOTSTRAP
+ bool "Full Bootstrap - Build three compilers instead of two (--enable-full-bootstrap)"
+
+endmenu
+