While llvm-readobj is not part of the normal toolchain llvm-readelf is
compatible with GNU readelf and installing it can be useful.
However, I was not able to add llvm-readelf without also installing
llvm-readobj. This can probably be solved by renaming the main CMake target
to be llvm-readelf and have llvm-readobj as a symlink instead.
Should I also try to make this change to avoid installing llvm-readobj or
is the current approach fine?
Details
Details
- Reviewers
jhenderson grimar MaskRay
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I think we want to install both probably, so this approach looks right to me.
I'd like to hear other people opinion on that.
Comment Actions
Yeah, I'm inclined to say we should have both too. There may be some users out there for e.g. COFF etc where people would be a bit surprised running llvm-readelf. Having both tools means we don't need to worry about which is a symlink of the other.