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

Normalize rpath entries to guard against missing default solib dir #14660

Commits on Feb 9, 2022

  1. Normalize rpath entries to guard against missing default solib dir

    When all dynamic deps in a build are built in transitioned
    configurations, the default solib dir is not created. However, while
    resolving paths, the dynamic linker stops at the first directory that
    does not exist, even when followed by "../".
    
    Before this commit, all rpath entries would consist of the relative
    path to the default solib dir followed by the relative path to the
    particular library's solib dir. Thus, if the default solib dir was
    missing, the dynamic linker wouldn't resolve any of these paths.
    
    This commit ensures that the relative path entries are normalized and
    thus contain no references to non-existing directories assuming the
    normalized path itself exists.
    
    Work towards bazelbuild#13819.
    fmeum committed Feb 9, 2022
    Configuration menu
    Copy the full SHA
    ccd14ca View commit details
    Browse the repository at this point in the history