Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apple: Fix direct linking with +verbatim #132394

Closed
wants to merge 1 commit into from

Conversation

madsmtm
Copy link
Contributor

@madsmtm madsmtm commented Oct 31, 2024

Linking with +verbatim somewhat worked before, but only when the library was included as part of an rlib.

Fixes #132264.

CC @petrochenkov, since you've worked on +verbatim before.

@rustbot label O-apple A-linkage

try-job: aarch64-apple
try-job: x86_64-apple-2

@rustbot
Copy link
Collaborator

rustbot commented Oct 31, 2024

r? @jieyouxu

rustbot has assigned @jieyouxu.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added A-run-make Area: port run-make Makefiles to rmake.rs S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Oct 31, 2024
@rustbot
Copy link
Collaborator

rustbot commented Oct 31, 2024

This PR modifies tests/run-make/. If this PR is trying to port a Makefile
run-make test to use rmake.rs, please update the
run-make port tracking issue
so we can track our progress. You can either modify the tracking issue
directly, or you can comment on the tracking issue and link this PR.

cc @jieyouxu

@rustbot rustbot added A-linkage Area: linking into static, shared libraries and binaries O-apple Operating system: Apple (macOS, iOS, tvOS, visionOS, watchOS) labels Oct 31, 2024
Comment on lines -6 to -7
//@ ignore-apple
// Reason: linking fails due to the unusual ".ext" staticlib name.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This ignore was added in #101806, and only later rationalized when converting to rmake.

@jieyouxu
Copy link
Member

The changes itself looks reasonable to me, but I don't know the implications of +verbatim so:

r? @petrochenkov

@rustbot rustbot assigned petrochenkov and unassigned jieyouxu Oct 31, 2024
@jieyouxu

This comment was marked as outdated.

bors added a commit to rust-lang-ci/rust that referenced this pull request Oct 31, 2024
…try>

Apple: Fix direct linking with +verbatim

Linking with `+verbatim` somewhat worked before, but only when the library was included as part of an rlib.

Fixes rust-lang#132264.

CC `@petrochenkov,` since you've worked on `+verbatim` before.

`@rustbot` label O-apple A-linkage

try-job: aarch64-apple
try-job: x86_64-apple-2
@bors

This comment was marked as outdated.

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@bors

This comment was marked as resolved.

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Oct 31, 2024
Linking with +verbatim somewhat worked before, but only when the library
was included as part of an rlib.
@madsmtm madsmtm force-pushed the fix-apple-verbatim-link branch from 3cb4340 to 71a8af9 Compare October 31, 2024 08:51
@madsmtm
Copy link
Contributor Author

madsmtm commented Oct 31, 2024

Fixed the tidy error now

@jieyouxu
Copy link
Member

@bors try

bors added a commit to rust-lang-ci/rust that referenced this pull request Oct 31, 2024
…try>

Apple: Fix direct linking with +verbatim

Linking with `+verbatim` somewhat worked before, but only when the library was included as part of an rlib.

Fixes rust-lang#132264.

CC `@petrochenkov,` since you've worked on `+verbatim` before.

`@rustbot` label O-apple A-linkage

try-job: aarch64-apple
try-job: x86_64-apple-2
@bors
Copy link
Collaborator

bors commented Oct 31, 2024

⌛ Trying commit 71a8af9 with merge b856a70...

@bors
Copy link
Collaborator

bors commented Oct 31, 2024

☀️ Try build successful - checks-actions
Build commit: b856a70 (b856a702839228028a62e27c73436bf9ff590a4e)

@jieyouxu
Copy link
Member

Try job passed, feel free to r=me if petrochenkov has no further concerns.

@petrochenkov
Copy link
Contributor

Please, don't merge this yet, I'll look.

@petrochenkov petrochenkov removed the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Nov 1, 2024
@petrochenkov petrochenkov added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Nov 1, 2024
@petrochenkov
Copy link
Contributor

I'm tentatively against doing this, otherwise I'd merge this quickly.
I still need to write an explanation though, sorry for the delays.

@madsmtm
Copy link
Contributor Author

madsmtm commented Nov 9, 2024

sorry for the delays.

There's no haste from my side, I don't need this myself.

@petrochenkov
Copy link
Contributor

I think we should either

I'll close this PR to maintain the status quo for now, but I'm also trying to make a step towards the second alternative in #138273 by making the search directory list for native libs consistent between rustc and linker.

matthiaskrgr added a commit to matthiaskrgr/rust that referenced this pull request Mar 13, 2025
metadata: Ignore sysroot when doing the manual native lib search in rustc

This is the opposite alternative to rust-lang#138170 and another way to make native library search consistent between rustc and linker.

This way the directory list searched by rustc is still a prefix of the directory list considered by linker, but it's a shorter prefix than in rust-lang#138170.
We can include the sysroot directories into rustc's search again later if the issues with rust-lang#138170 are resolved, it will be a backward compatible change.

This may break some code doing weird things on unstable rustc, or tier 2-3 targets, like bundling `libunwind.a` or sanitizers into something.
Note that this doesn't affect shipped `libc.a`, because it lives in `self-contained` directories in sysroot, and `self-contained` sysroot is already not included into the rustc's search. All libunwind and sanitizer libs should be moved to `self-contained` sysroot too eventually.

With the consistent search directory list between rustc and linker we can make rustc own the native library search (at least for static libs) and use linker search only as a fallback (like in rust-lang#123436). This will allow addressing issues like rust-lang#132394 once and for all on all targets.

r? `@bjorn3`
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this pull request Mar 13, 2025
metadata: Ignore sysroot when doing the manual native lib search in rustc

This is the opposite alternative to rust-lang#138170 and another way to make native library search consistent between rustc and linker.

This way the directory list searched by rustc is still a prefix of the directory list considered by linker, but it's a shorter prefix than in rust-lang#138170.
We can include the sysroot directories into rustc's search again later if the issues with rust-lang#138170 are resolved, it will be a backward compatible change.

This may break some code doing weird things on unstable rustc, or tier 2-3 targets, like bundling `libunwind.a` or sanitizers into something.
Note that this doesn't affect shipped `libc.a`, because it lives in `self-contained` directories in sysroot, and `self-contained` sysroot is already not included into the rustc's search. All libunwind and sanitizer libs should be moved to `self-contained` sysroot too eventually.

With the consistent search directory list between rustc and linker we can make rustc own the native library search (at least for static libs) and use linker search only as a fallback (like in rust-lang#123436). This will allow addressing issues like rust-lang#132394 once and for all on all targets.

r? ``@bjorn3``
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Mar 13, 2025
Rollup merge of rust-lang#138273 - petrochenkov:nonatroot, r=bjorn3

metadata: Ignore sysroot when doing the manual native lib search in rustc

This is the opposite alternative to rust-lang#138170 and another way to make native library search consistent between rustc and linker.

This way the directory list searched by rustc is still a prefix of the directory list considered by linker, but it's a shorter prefix than in rust-lang#138170.
We can include the sysroot directories into rustc's search again later if the issues with rust-lang#138170 are resolved, it will be a backward compatible change.

This may break some code doing weird things on unstable rustc, or tier 2-3 targets, like bundling `libunwind.a` or sanitizers into something.
Note that this doesn't affect shipped `libc.a`, because it lives in `self-contained` directories in sysroot, and `self-contained` sysroot is already not included into the rustc's search. All libunwind and sanitizer libs should be moved to `self-contained` sysroot too eventually.

With the consistent search directory list between rustc and linker we can make rustc own the native library search (at least for static libs) and use linker search only as a fallback (like in rust-lang#123436). This will allow addressing issues like rust-lang#132394 once and for all on all targets.

r? ``@bjorn3``
@petrochenkov
Copy link
Contributor

or just make rustc own native library search consistently on all targets (at least for static libraries), and use linker only as a fallback

Done in #138753.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-linkage Area: linking into static, shared libraries and binaries A-run-make Area: port run-make Makefiles to rmake.rs O-apple Operating system: Apple (macOS, iOS, tvOS, visionOS, watchOS) S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fails to link verbatim libary in 1.82 on macOS
6 participants