Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Probe and dlopen() the correct libstdc++ #46976
Probe and dlopen() the correct libstdc++ #46976
Changes from 26 commits
8a2ad6b
314df3e
b395b0b
128e8be
b4f876f
f423adb
6d84325
2961b0f
6ff2bf5
799c642
c652040
1574d22
213fdce
ea99107
ece7a5a
2788bc0
c4a95e7
ca967aa
4bf5699
3314c16
794e7a7
483a081
f570772
2c9a17e
cc88e0e
a8262e4
f675f17
7685f15
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note for other reviewers: we also identified that libgit2, lib*san, and all suitesparse libraries do not have
RUNPATH: $ORIGIN
in them as expected. Of those, however, the lib*san libraries are not installed, so we don't care about them currently. Secondly, we appear to load all of the dependencies of libgit2 at startup (excluding libgit2 itself), according toLibdl.dllist()
, so it shouldn't see a change there, even with attempted LD_LIBRARY_PATH overloading:And while we do not load all of SuiteSparse at startup, the
_jll
pkg will attempt to sort them correctly, so the presence ofRPATH $ORIGIN
should be of little to no consequence, compared toRUNPATH $ORIGIN
that we would prefer to see there.So these seem to be the only 2 libraries that we need to care about for this PR to progress at present.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a leftover comment which should probably be moved to Make.inc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@apaz-cli can you move this comment please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, just copy it, since it makes sense in both places.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, it seems the comment I edited above is derived from the comment here, but has unique typos?! What's going on there?