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

Add -z,origin linker flag on OpenBSD. #5196

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

3405691582
Copy link
Member

This is required for $ORIGIN rpath processing here (without having to fiddle with workarounds like LD_LIBRARY_PATH).

This is required for $ORIGIN rpath processing here (without having to
fiddle with workarounds like LD_LIBRARY_PATH).
@@ -168,6 +168,10 @@ set_target_properties(Foundation PROPERTIES
INSTALL_RPATH "$ORIGIN"
INSTALL_REMOVE_ENVIRONMENT_RPATH ON)

if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
target_link_options(Foundation PRIVATE "LINKER:-z,origin")
Copy link
Contributor

Choose a reason for hiding this comment

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

All of the targets in the Foundation project (both those here as well as those in swift-foundation) use ORIGIN-based rpath values. Is there something special about the Foundation library, or should this be provided for all of these targets?

Copy link
Member

Choose a reason for hiding this comment

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

-z origin is a flag that is useful in the odd case that the reference to $ORIGIN does not occur in DT_NEEDED or DT_RUNPATH (DT_RPATH also applies, but that is considered deprecated) and is expected to possibly occur at runtime through libdl (i.e. dlopen). In such cases the computation may be elided as the value is unneeded and could cause a failure otherwise due to the missing value.

Copy link
Member Author

Choose a reason for hiding this comment

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

On OpenBSD, -z origin is also required to properly resolve $ORIGIN.

I'm fairly sure this will be required for the other targets, and only the main Foundation library has posed a problem while trying to get the toolchain stood up end to end, so I've only added it for Foundation so far.

It probably is the case I should add them for the other targets, but I need to double-check.

Copy link
Member

Choose a reason for hiding this comment

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

Ah, right, this is Open, not Free. Open and DragonFly both need -z origin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants