@@ -283,7 +283,7 @@ impl Step for Llvm {
283
283
} ;
284
284
285
285
builder. update_submodule ( & Path :: new ( "src" ) . join ( "llvm-project" ) ) ;
286
- if builder. llvm_link_shared ( ) && target. contains ( "windows" ) {
286
+ if builder. llvm_link_shared ( ) && target. is_windows ( ) {
287
287
panic ! ( "shared linking to LLVM is not currently supported on {}" , target. triple) ;
288
288
}
289
289
@@ -361,7 +361,7 @@ impl Step for Llvm {
361
361
// Disable zstd to avoid a dependency on libzstd.so.
362
362
cfg. define ( "LLVM_ENABLE_ZSTD" , "OFF" ) ;
363
363
364
- if !target. contains ( "windows" ) {
364
+ if !target. is_windows ( ) {
365
365
cfg. define ( "LLVM_ENABLE_ZLIB" , "ON" ) ;
366
366
} else {
367
367
cfg. define ( "LLVM_ENABLE_ZLIB" , "OFF" ) ;
@@ -607,7 +607,7 @@ fn configure_cmake(
607
607
cfg. define ( "CMAKE_SYSTEM_NAME" , "DragonFly" ) ;
608
608
} else if target. contains ( "freebsd" ) {
609
609
cfg. define ( "CMAKE_SYSTEM_NAME" , "FreeBSD" ) ;
610
- } else if target. contains ( "windows" ) {
610
+ } else if target. is_windows ( ) {
611
611
cfg. define ( "CMAKE_SYSTEM_NAME" , "Windows" ) ;
612
612
} else if target. contains ( "haiku" ) {
613
613
cfg. define ( "CMAKE_SYSTEM_NAME" , "Haiku" ) ;
@@ -772,7 +772,7 @@ fn configure_cmake(
772
772
&& !target. contains ( "netbsd" )
773
773
&& !target. contains ( "solaris" )
774
774
{
775
- if target. contains ( "apple" ) || target. contains ( "windows" ) {
775
+ if target. contains ( "apple" ) || target. is_windows ( ) {
776
776
ldflags. push_all ( "-static-libstdc++" ) ;
777
777
} else {
778
778
ldflags. push_all ( "-Wl,-Bsymbolic -static-libstdc++" ) ;
@@ -1295,7 +1295,7 @@ impl Step for Libunwind {
1295
1295
cfg. define ( "__LIBUNWIND_IS_NATIVE_ONLY" , None ) ;
1296
1296
cfg. define ( "NDEBUG" , None ) ;
1297
1297
}
1298
- if self . target . contains ( "windows" ) {
1298
+ if self . target . is_windows ( ) {
1299
1299
cfg. define ( "_LIBUNWIND_HIDE_SYMBOLS" , "1" ) ;
1300
1300
cfg. define ( "_LIBUNWIND_IS_NATIVE_ONLY" , "1" ) ;
1301
1301
}
0 commit comments