@@ -275,12 +275,8 @@ fn make_win_dist(
275
275
}
276
276
277
277
//Copy platform tools to platform-specific bin directory
278
- let target_bin_dir = plat_root
279
- . join ( "lib" )
280
- . join ( "rustlib" )
281
- . join ( target. triple )
282
- . join ( "bin" )
283
- . join ( "self-contained" ) ;
278
+ let target_bin_dir =
279
+ plat_root. join ( "lib" ) . join ( "rustlib" ) . join ( target) . join ( "bin" ) . join ( "self-contained" ) ;
284
280
fs:: create_dir_all ( & target_bin_dir) . expect ( "creating target_bin_dir failed" ) ;
285
281
for src in target_tools {
286
282
builder. copy_link_to_folder ( & src, & target_bin_dir) ;
@@ -295,12 +291,8 @@ fn make_win_dist(
295
291
) ;
296
292
297
293
//Copy platform libs to platform-specific lib directory
298
- let target_lib_dir = plat_root
299
- . join ( "lib" )
300
- . join ( "rustlib" )
301
- . join ( target. triple )
302
- . join ( "lib" )
303
- . join ( "self-contained" ) ;
294
+ let target_lib_dir =
295
+ plat_root. join ( "lib" ) . join ( "rustlib" ) . join ( target) . join ( "lib" ) . join ( "self-contained" ) ;
304
296
fs:: create_dir_all ( & target_lib_dir) . expect ( "creating target_lib_dir failed" ) ;
305
297
for src in target_libs {
306
298
builder. copy_link_to_folder ( & src, & target_lib_dir) ;
@@ -450,7 +442,7 @@ impl Step for Rustc {
450
442
// component for now.
451
443
maybe_install_llvm_runtime ( builder, host, image) ;
452
444
453
- let dst_dir = image. join ( "lib/rustlib" ) . join ( & * host. triple ) . join ( "bin" ) ;
445
+ let dst_dir = image. join ( "lib/rustlib" ) . join ( host) . join ( "bin" ) ;
454
446
t ! ( fs:: create_dir_all( & dst_dir) ) ;
455
447
456
448
// Copy over lld if it's there
@@ -607,7 +599,7 @@ fn verify_uefi_rlib_format(builder: &Builder<'_>, target: TargetSelection, stamp
607
599
608
600
/// Copy stamped files into an image's `target/lib` directory.
609
601
fn copy_target_libs ( builder : & Builder < ' _ > , target : TargetSelection , image : & Path , stamp : & Path ) {
610
- let dst = image. join ( "lib/rustlib" ) . join ( target. triple ) . join ( "lib" ) ;
602
+ let dst = image. join ( "lib/rustlib" ) . join ( target) . join ( "lib" ) ;
611
603
let self_contained_dst = dst. join ( "self-contained" ) ;
612
604
t ! ( fs:: create_dir_all( & dst) ) ;
613
605
t ! ( fs:: create_dir_all( & self_contained_dst) ) ;
@@ -769,7 +761,7 @@ impl Step for Analysis {
769
761
770
762
let src = builder
771
763
. stage_out ( compiler, Mode :: Std )
772
- . join ( target. triple )
764
+ . join ( target)
773
765
. join ( builder. cargo_dir ( ) )
774
766
. join ( "deps" )
775
767
. join ( "save-analysis" ) ;
@@ -1509,7 +1501,7 @@ impl Step for Extended {
1509
1501
tarballs. push ( builder. ensure ( Rustc { compiler : builder. compiler ( stage, target) } ) ) ;
1510
1502
tarballs. push ( builder. ensure ( Std { compiler, target } ) . expect ( "missing std" ) ) ;
1511
1503
1512
- if target. ends_with ( "windows-gnu" ) {
1504
+ if target. is_windows_gnu ( ) {
1513
1505
tarballs. push ( builder. ensure ( Mingw { host : target } ) . expect ( "missing mingw" ) ) ;
1514
1506
}
1515
1507
@@ -1683,7 +1675,7 @@ impl Step for Extended {
1683
1675
prepare ( tool) ;
1684
1676
}
1685
1677
}
1686
- if target. ends_with ( "windows-gnu" ) {
1678
+ if target. is_windows_gnu ( ) {
1687
1679
prepare ( "rust-mingw" ) ;
1688
1680
}
1689
1681
@@ -1830,7 +1822,7 @@ impl Step for Extended {
1830
1822
. arg ( "-t" )
1831
1823
. arg ( etc. join ( "msi/remove-duplicates.xsl" ) )
1832
1824
. run ( builder) ;
1833
- if target. ends_with ( "windows-gnu" ) {
1825
+ if target. is_windows_gnu ( ) {
1834
1826
command ( & heat)
1835
1827
. current_dir ( & exe)
1836
1828
. arg ( "dir" )
@@ -1876,7 +1868,7 @@ impl Step for Extended {
1876
1868
if built_tools. contains ( "miri" ) {
1877
1869
cmd. arg ( "-dMiriDir=miri" ) ;
1878
1870
}
1879
- if target. ends_with ( "windows-gnu" ) {
1871
+ if target. is_windows_gnu ( ) {
1880
1872
cmd. arg ( "-dGccDir=rust-mingw" ) ;
1881
1873
}
1882
1874
cmd. run ( builder) ;
@@ -1901,7 +1893,7 @@ impl Step for Extended {
1901
1893
}
1902
1894
candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
1903
1895
1904
- if target. ends_with ( "windows-gnu" ) {
1896
+ if target. is_windows_gnu ( ) {
1905
1897
candle ( "GccGroup.wxs" . as_ref ( ) ) ;
1906
1898
}
1907
1899
@@ -1941,7 +1933,7 @@ impl Step for Extended {
1941
1933
cmd. arg ( "DocsGroup.wixobj" ) ;
1942
1934
}
1943
1935
1944
- if target. ends_with ( "windows-gnu" ) {
1936
+ if target. is_windows_gnu ( ) {
1945
1937
cmd. arg ( "GccGroup.wixobj" ) ;
1946
1938
}
1947
1939
// ICE57 wrongly complains about the shortcuts
@@ -1973,7 +1965,7 @@ fn add_env(builder: &Builder<'_>, cmd: &mut BootstrapCommand, target: TargetSele
1973
1965
1974
1966
if target. contains ( "windows-gnullvm" ) {
1975
1967
cmd. env ( "CFG_MINGW" , "1" ) . env ( "CFG_ABI" , "LLVM" ) ;
1976
- } else if target. contains ( "windows-gnu" ) {
1968
+ } else if target. is_windows_gnu ( ) {
1977
1969
cmd. env ( "CFG_MINGW" , "1" ) . env ( "CFG_ABI" , "GNU" ) ;
1978
1970
} else {
1979
1971
cmd. env ( "CFG_MINGW" , "0" ) . env ( "CFG_ABI" , "MSVC" ) ;
@@ -2087,7 +2079,7 @@ fn maybe_install_llvm(
2087
2079
2088
2080
/// Maybe add libLLVM.so to the target lib-dir for linking.
2089
2081
pub fn maybe_install_llvm_target ( builder : & Builder < ' _ > , target : TargetSelection , sysroot : & Path ) {
2090
- let dst_libdir = sysroot. join ( "lib/rustlib" ) . join ( & * target. triple ) . join ( "lib" ) ;
2082
+ let dst_libdir = sysroot. join ( "lib/rustlib" ) . join ( target) . join ( "lib" ) ;
2091
2083
// We do not need to copy LLVM files into the sysroot if it is not
2092
2084
// dynamically linked; it is already included into librustc_llvm
2093
2085
// statically.
0 commit comments