Not documented, but GNU ld also accepts -soname arg. This is used by the FreeBSD build.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
It turns out GNU ld also accepts --soname arg and --soname=arg for a total of 5 different ways of spelling the option. Do we want those as well?
Also it seems my change is against the convention established here. Should it be:
def alias_soname : Separate<["-"], "h">, Alias<soname>; def alias_snoame : Separate<["-"], "soname">, Alias<soname>;
Comment Actions
LGTM
We probably should name these aliases alias_<alias name> instead of alias_<aliased name> to avoid conflicts, but this patch looks good for now.
Comment Actions
We probably should name these aliases alias_<alias name> instead of alias_<aliased name> to avoid conflicts
I'm happy to submit another review to swap them around.
but this patch looks good for now.
To be clear, do you mean as I first submitted it, or the change with doubled def alias_soname?