[PATCH] D13387: lld: Allow -soname arg in addition to -soname=arg

Ed Maste via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 2 08:22:18 PDT 2015


emaste added a comment.

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>;
}}}


http://reviews.llvm.org/D13387





More information about the llvm-commits mailing list