@@ -1493,11 +1493,11 @@ impl fmt::Debug for File {
1493
1493
readlink ( & p) . ok ( )
1494
1494
}
1495
1495
1496
- #[ cfg( target_os = "macos " ) ]
1496
+ #[ cfg( target_vendor = "apple " ) ]
1497
1497
fn get_path ( fd : c_int ) -> Option < PathBuf > {
1498
1498
// FIXME: The use of PATH_MAX is generally not encouraged, but it
1499
- // is inevitable in this case because macOS defines `fcntl` with
1500
- // `F_GETPATH` in terms of `MAXPATHLEN`, and there are no
1499
+ // is inevitable in this case because Apple targets define `fcntl`
1500
+ // with `F_GETPATH` in terms of `MAXPATHLEN`, and there are no
1501
1501
// alternatives. If a better method is invented, it should be used
1502
1502
// instead.
1503
1503
let mut buf = vec ! [ 0 ; libc:: PATH_MAX as usize ] ;
@@ -1538,12 +1538,12 @@ impl fmt::Debug for File {
1538
1538
1539
1539
#[ cfg( not( any(
1540
1540
target_os = "linux" ,
1541
- target_os = "macos" ,
1542
1541
target_os = "vxworks" ,
1543
1542
all( target_os = "freebsd" , target_arch = "x86_64" ) ,
1544
1543
target_os = "netbsd" ,
1545
1544
target_os = "illumos" ,
1546
- target_os = "solaris"
1545
+ target_os = "solaris" ,
1546
+ target_vendor = "apple" ,
1547
1547
) ) ) ]
1548
1548
fn get_path ( _fd : c_int ) -> Option < PathBuf > {
1549
1549
// FIXME(#24570): implement this for other Unix platforms
@@ -1552,12 +1552,12 @@ impl fmt::Debug for File {
1552
1552
1553
1553
#[ cfg( any(
1554
1554
target_os = "linux" ,
1555
- target_os = "macos" ,
1556
1555
target_os = "freebsd" ,
1557
1556
target_os = "hurd" ,
1558
1557
target_os = "netbsd" ,
1559
1558
target_os = "openbsd" ,
1560
- target_os = "vxworks"
1559
+ target_os = "vxworks" ,
1560
+ target_vendor = "apple" ,
1561
1561
) ) ]
1562
1562
fn get_mode ( fd : c_int ) -> Option < ( bool , bool ) > {
1563
1563
let mode = unsafe { libc:: fcntl ( fd, libc:: F_GETFL ) } ;
@@ -1574,12 +1574,12 @@ impl fmt::Debug for File {
1574
1574
1575
1575
#[ cfg( not( any(
1576
1576
target_os = "linux" ,
1577
- target_os = "macos" ,
1578
1577
target_os = "freebsd" ,
1579
1578
target_os = "hurd" ,
1580
1579
target_os = "netbsd" ,
1581
1580
target_os = "openbsd" ,
1582
- target_os = "vxworks"
1581
+ target_os = "vxworks" ,
1582
+ target_vendor = "apple" ,
1583
1583
) ) ) ]
1584
1584
fn get_mode ( _fd : c_int ) -> Option < ( bool , bool ) > {
1585
1585
// FIXME(#24570): implement this for other Unix platforms
0 commit comments