about summary refs log tree commit diff
diff options
context:
space:
mode:
authoronur-ozkan <work@onurozkan.dev>2024-05-28 08:18:35 +0300
committeronur-ozkan <work@onurozkan.dev>2024-06-06 07:01:40 +0300
commit6bfdb040d95739e09b3067e5d09543030726aeb3 (patch)
tree606327c8b2d1da9e8836467929c84a9262390002
parenta2407e84481fbbadd6d8d8e80726fa599533c465 (diff)
downloadrust-6bfdb040d95739e09b3067e5d09543030726aeb3.tar.gz
rust-6bfdb040d95739e09b3067e5d09543030726aeb3.zip
add FIXME on libcxx check
Signed-off-by: onur-ozkan <work@onurozkan.dev>
-rw-r--r--src/bootstrap/src/core/sanity.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bootstrap/src/core/sanity.rs b/src/bootstrap/src/core/sanity.rs
index 6595c599eb1..ff0c36f1144 100644
--- a/src/bootstrap/src/core/sanity.rs
+++ b/src/bootstrap/src/core/sanity.rs
@@ -127,11 +127,7 @@ pub fn check(build: &mut Build) {
                 }
             }
             tool::LibcxxVersion::Llvm(_) => {
-                eprintln!(
-                    "\nYour system is using libc++, which is incompatible with the `llvm.download-ci-llvm` option."
-                );
-                eprintln!("Disable `llvm.download-ci-llvm` or switch to libstdc++.");
-                crate::exit!(1);
+                // FIXME: Handle libc++ version check.
             }
         }
     }