Skip to content

Commit 60b4cf8

Browse files
Rollup merge of rust-lang#130248 - nyurik:fix-129895, r=workingjubilee
Limit `libc::link` usage to `nto70` target only, not NTO OS It seems QNX 7.0 does not support `linkat` at all (most tests were failing). Limiting to QNX 7.0 only, while using `linkat` for the future versions seems like the right path forward (tested on 7.0). Fixes rust-lang#129895 CC: `@japaric` `@flba-eb` `@saethlin`
2 parents 136504a + e977a44 commit 60b4cf8

File tree

1 file changed

+1
-1
lines changed
  • std/src/sys/pal/unix

1 file changed

+1
-1
lines changed

std/src/sys/pal/unix/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ pub fn link(original: &Path, link: &Path) -> io::Result<()> {
17311731
run_path_with_cstr(original, &|original| {
17321732
run_path_with_cstr(link, &|link| {
17331733
cfg_if::cfg_if! {
1734-
if #[cfg(any(target_os = "vxworks", target_os = "redox", target_os = "android", target_os = "espidf", target_os = "horizon", target_os = "vita", target_os = "nto"))] {
1734+
if #[cfg(any(target_os = "vxworks", target_os = "redox", target_os = "android", target_os = "espidf", target_os = "horizon", target_os = "vita", target_env = "nto70"))] {
17351735
// VxWorks, Redox and ESP-IDF lack `linkat`, so use `link` instead. POSIX leaves
17361736
// it implementation-defined whether `link` follows symlinks, so rely on the
17371737
// `symlink_hard_link` test in library/std/src/fs/tests.rs to check the behavior.

0 commit comments

Comments
 (0)