File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ pub fn check(build: &mut Build) {
105105 }
106106
107107 // Ensure that a compatible version of libstdc++ is available on the system when using `llvm.download-ci-llvm`.
108- if !build. config . dry_run ( ) && !build . build . is_msvc ( ) && build. config . llvm_from_ci {
108+ if !build. config . dry_run ( ) && build. config . llvm_from_ci {
109109 let builder = Builder :: new ( build) ;
110110 let libcxx_version = builder. ensure ( tool:: LibcxxVersionTool { target : build. build } ) ;
111111
@@ -124,11 +124,7 @@ pub fn check(build: &mut Build) {
124124 }
125125 }
126126 tool:: LibcxxVersion :: Llvm ( _) => {
127- eprintln ! (
128- "\n Your system is using libc++, which is incompatible with the `llvm.download-ci-llvm` option."
129- ) ;
130- eprintln ! ( "Disable `llvm.download-ci-llvm` or switch to libstdc++." ) ;
131- crate :: exit!( 1 ) ;
127+ // FIXME: Handle libc++ version check.
132128 }
133129 }
134130 }
You can’t perform that action at this time.
0 commit comments