File tree 1 file changed +2
-6
lines changed
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) {
105
105
}
106
106
107
107
// 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 {
109
109
let builder = Builder :: new ( build) ;
110
110
let libcxx_version = builder. ensure ( tool:: LibcxxVersionTool { target : build. build } ) ;
111
111
@@ -124,11 +124,7 @@ pub fn check(build: &mut Build) {
124
124
}
125
125
}
126
126
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.
132
128
}
133
129
}
134
130
}
You can’t perform that action at this time.
0 commit comments