From cfc7782a8457ff6e6856ef6741725c29b2e7c9c1 Mon Sep 17 00:00:00 2001 From: Hans Kratz Date: Mon, 11 Oct 2021 23:05:26 +0200 Subject: [PATCH] Add --enable-overflow-checks-std option to configure script. --- src/bootstrap/configure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py index fd148d14478..ce029089c5a 100755 --- a/src/bootstrap/configure.py +++ b/src/bootstrap/configure.py @@ -76,6 +76,7 @@ o("llvm-assertions", "llvm.assertions", "build LLVM with assertions") o("llvm-plugins", "llvm.plugins", "build LLVM with plugin interface") o("debug-assertions", "rust.debug-assertions", "build with debugging assertions") o("overflow-checks", "rust.overflow-checks", "build with overflow checks") +o("overflow-checks-std", "rust.overflow-checks-std", "build the standard library with overflow checks") o("llvm-release-debuginfo", "llvm.release-debuginfo", "build LLVM with debugger metadata") v("debuginfo-level", "rust.debuginfo-level", "debuginfo level for Rust code") v("debuginfo-level-rustc", "rust.debuginfo-level-rustc", "debuginfo level for the compiler")