Commit 0b1beef
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.
Closes bazelbuild#14660.
PiperOrigin-RevId: 4316718881 parent 1ec1068 commit 0b1beef
File tree
2 files changed
+8
-3
lines changed- src
- main/java/com/google/devtools/build/lib/rules/cpp
- test/java/com/google/devtools/build/lib/rules/cpp
2 files changed
+8
-3
lines changedLines changed: 7 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
333 | | - | |
334 | | - | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
335 | 340 | | |
336 | 341 | | |
337 | 342 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2223 | 2223 | | |
2224 | 2224 | | |
2225 | 2225 | | |
2226 | | - | |
| 2226 | + | |
2227 | 2227 | | |
2228 | 2228 | | |
2229 | 2229 | | |
| |||
0 commit comments