This doesn't make any difference since we don't use RPATH/RUNPATH
on Fuchsia but it avoids the CMake error when re-linking libraries
while building with Ninja.
Details
Details
- Reviewers
mcgrathr jakehehrlich juliehockett
Diff Detail
Diff Detail
- Repository
- rCRT Compiler Runtime
Event Timeline
Comment Actions
Actually after testing this I believe this is really what we want, without this option CMake sets RPATH for build libraries and then removes it when installing these. With this option it doesn't even set the RPATH for build libraries.
Comment Actions
Need some clarification on this option
- The rpath is the path from which libs mentioned in .dynamic are relative to?
- Normally cmake first links binaries without setting the RPATH and then sets it later.
- This makes RPATH always equal to the empty string and avoids the "relinking" step that resets RPATH
If so this LGTM