You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[llvm][unittests][NFCI] Depend on rpath for loading test plugins
As proven by llvm#159126 it's unnecessary to explicitly construct the path for loading the test plugins.
On all supported platforms the rpath is set appropriately for them to be found by the dynamic loader
itself. Thus we can just rid ourselves of the extra code.
The only exception is `Support/DynamicLibrary` as it also runs on Windows, which lacks the concept
of a rpath.
This also cleans up some of the CMake code and C++ includes slightly.
Surprisingly `intrinsics_gen` isn't necessary for any of them as none of them actually do much.
See: llvm#159126
0 commit comments